Skip to content

Commit 0251138

Browse files
Remove distributionManagement and clean up formatting
- Remove distributionManagement section from app POM (align with JDBC standard) - Remove 'Made with Bob' comments from multiple files - Improve Gradle formatting in CICS bundle build.gradle - Remove trailing comments from various configuration files These changes improve consistency with the JDBC repository standard and remove unnecessary artifact publishing configuration from sample project.
1 parent c13a23a commit 0251138

7 files changed

Lines changed: 8 additions & 29 deletions

File tree

.github/workflows/java.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,3 @@ jobs:
6565
uses: gradle/actions/setup-gradle@v4
6666
- name: Build with Gradle
6767
run: ./gradlew build bootWar -Pjava_version=${{ matrix.jdk }}
68-
69-
# Made with Bob

.project

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,3 @@
4040
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
4141
</natures>
4242
</projectDescription>
43-
44-
<!-- Made with Bob -->

cics-java-liberty-springboot-jcics-app/pom.xml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -75,17 +75,4 @@
7575
</plugins>
7676
</build>
7777

78-
<distributionManagement>
79-
<snapshotRepository>
80-
<id>${publish_repo_snapshots_name}</id>
81-
<url>${publish_repo_snapshots_url}</url>
82-
</snapshotRepository>
83-
<repository>
84-
<id>${publish_repo_releases_name}</id>
85-
<url>${publish_repo_releases_url}</url>
86-
</repository>
87-
</distributionManagement>
88-
8978
</project>
90-
91-
<!-- Made with Bob -->

cics-java-liberty-springboot-jcics-app/src/main/webapp/WEB-INF/web.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,3 @@
2525
<role-name>cicsAllAuthenticated</role-name>
2626
</security-role>
2727
</web-app>
28-
29-
<!-- Made with Bob -->

cics-java-liberty-springboot-jcics-cicsbundle/build.gradle

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// ============================================================================
22
// Plugins
33
// ============================================================================
4-
plugins {
4+
plugins
5+
{
56
id 'com.ibm.cics.bundle' version '1.0.8'
67
}
78

@@ -14,15 +15,16 @@ version = '0.1.0'
1415
// ============================================================================
1516
// Dependencies
1617
// ============================================================================
17-
dependencies {
18+
dependencies
19+
{
1820
// Application WAR from sibling project
1921
cicsBundlePart project(path: ':cics-java-liberty-springboot-jcics-app', configuration: 'archives')
2022
}
2123

22-
cicsBundle {
23-
build {
24+
cicsBundle
25+
{
26+
build
27+
{
2428
defaultJVMServer = project.findProperty("cics.jvmserver") ?: "DFHWLP"
2529
}
2630
}
27-
28-
// Made with Bob

cics-java-liberty-springboot-jcics-cicsbundle/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,3 @@
5252
</build>
5353

5454
</project>
55-
56-
<!-- Made with Bob -->

gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,3 @@ distributionPath=wrapper/dists
33
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
7-
# Made with Bob

0 commit comments

Comments
 (0)