From 0b20b2f4c99d792d2f15f313b6e8698a5cf3cdcc Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Wed, 6 May 2026 16:10:07 +0530 Subject: [PATCH 01/13] restructuring of code --- .mvn/wrapper/maven-wrapper.properties | 1 + .../build.gradle | 64 ++++------- .../build.properties | 3 + .../pom.xml | 107 ++++++++++++++++++ .../build.gradle | 31 +++++ .../pom.xml | 56 +++++++++ gradle.properties | 10 +- pom.xml | 91 +++------------ settings.gradle | 11 +- 9 files changed, 256 insertions(+), 118 deletions(-) rename build.gradle => cics-java-liberty-springboot-transactions-app/build.gradle (53%) create mode 100644 cics-java-liberty-springboot-transactions-app/build.properties create mode 100644 cics-java-liberty-springboot-transactions-app/pom.xml create mode 100644 cics-java-liberty-springboot-transactions-cicsbundle/build.gradle create mode 100644 cics-java-liberty-springboot-transactions-cicsbundle/pom.xml diff --git a/.mvn/wrapper/maven-wrapper.properties b/.mvn/wrapper/maven-wrapper.properties index 90ffde7..70db5db 100644 --- a/.mvn/wrapper/maven-wrapper.properties +++ b/.mvn/wrapper/maven-wrapper.properties @@ -1,2 +1,3 @@ + distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar diff --git a/build.gradle b/cics-java-liberty-springboot-transactions-app/build.gradle similarity index 53% rename from build.gradle rename to cics-java-liberty-springboot-transactions-app/build.gradle index d98eff1..3f4ef39 100644 --- a/build.gradle +++ b/cics-java-liberty-springboot-transactions-app/build.gradle @@ -1,18 +1,36 @@ plugins { - id 'org.springframework.boot' version '3.5.13' + id 'org.springframework.boot' version '3.5.13' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' id 'eclipse' - id 'idea' id 'war' - id 'maven-publish' + id 'idea' } group = 'com.ibm.cicsdev.springboot' -archivesBaseName='cics-java-liberty-springboot-transactions' version = '0.1.0' +// ============================================================================ +// Java Configuration +// ============================================================================ +java { + sourceCompatibility = JavaVersion.toVersion(java_version) + targetCompatibility = JavaVersion.toVersion(java_version) +} + +// ============================================================================ +// WAR Configuration +// ============================================================================ +war { + archiveFileName = "cics-java-liberty-springboot-transactions-app-${version}.war" +} + +// Two versions of the WAR would be built, one for embedding into servers like Liberty (plain) +// and a bootWAR which can run standalone and contains all the Tomcat and Spring Boot stuff +// we don't need bootWAR, so disable it. +bootWar { enabled = false } + // If in Eclipse, add Javadoc to the local project classpath eclipse { @@ -22,19 +40,11 @@ eclipse } } - - repositories { mavenCentral() } -java { - toolchain { - languageVersion = JavaLanguageVersion.of(java_version) - } -} - dependencies { @@ -55,33 +65,3 @@ dependencies // Spring's Transactional API implementation ("org.springframework:spring-tx") } - -//Don't generate a FAT bootWar, we don't need to run standalone -bootWar { enabled = false } - -publishing { - publications { - // Publication for JCICS - maven(MavenPublication) { - groupId "${group}" - version "${version}" - artifactId "${archivesBaseName}" - artifact bootWar - } - } - - // Configure the Maven repository to publish to somewhere which is configurable - // with environment variables from outside gradle. - // - // For example: - // gradle build publish \ - // -Ppublish_repo_releases_url="file://my-folder" \ - // -Ppublish_repo_releases_name="my-maven-repo" - // - repositories { - maven { - url = "${publish_repo_releases_url}/${publish_repo_releases_name}" - } - } - -} diff --git a/cics-java-liberty-springboot-transactions-app/build.properties b/cics-java-liberty-springboot-transactions-app/build.properties new file mode 100644 index 0000000..084ecae --- /dev/null +++ b/cics-java-liberty-springboot-transactions-app/build.properties @@ -0,0 +1,3 @@ +source.. = src/main/java/ +bin.includes = META-INF/,. +output.. = bin/ \ No newline at end of file diff --git a/cics-java-liberty-springboot-transactions-app/pom.xml b/cics-java-liberty-springboot-transactions-app/pom.xml new file mode 100644 index 0000000..0e3a9ef --- /dev/null +++ b/cics-java-liberty-springboot-transactions-app/pom.xml @@ -0,0 +1,107 @@ + + + 4.0.0 + + + + com.ibm.cicsdev + cics-java-liberty-springboot-transactions + 0.1.0 + ../pom.xml + + + + cics-java-liberty-springboot-transactions-app + com.ibm.cicsdev.springboot.transactions.app + Demo project for Spring and Liberty transactions + + + 17 + UTF-8 + ${java.version} + ${java.version} + true + + + + + + + com.ibm.cics + com.ibm.cics.ts.bom + 6.1-20250812133513-PH63856 + pom + import + + + + + + + + com.ibm.cics + com.ibm.cics.server + + + + + org.springframework.boot + spring-boot-starter-web + + + + + org.springframework.boot + spring-boot-starter-tomcat + provided + + + + + org.springframework + spring-tx + + + + + jakarta.transaction + jakarta.transaction-api + provided + + + + + + war + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + + + + ${publish_repo_snapshots_name} + ${publish_repo_snapshots_url} + + + ${publish_repo_releases_name} + ${publish_repo_releases_url} + + + + diff --git a/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle b/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle new file mode 100644 index 0000000..37189b5 --- /dev/null +++ b/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle @@ -0,0 +1,31 @@ +// ============================================================================ +// Plugins +// ============================================================================ +plugins { + id 'com.ibm.cics.bundle' version '1.0.8' +} + +// ============================================================================ +// Project Information +// ============================================================================ +description = 'CICS Transactions Springboot Application - CICS Bundle' +version = '1.0.0' + +// ============================================================================ +// Dependencies +// ============================================================================ +dependencies { + // Application WAR from sibling project + cicsBundlePart project(path: ':cics-java-liberty-springboot-transactions-app', configuration: 'archives') +} + +// ============================================================================ +// CICS Bundle Configuration +// ============================================================================ +cicsBundle { + build { + defaultJVMServer = project.findProperty('cics.jvmserver') ?: cicsJvmServer + } +} + +// Made with Bob diff --git a/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml b/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml new file mode 100644 index 0000000..5e0740f --- /dev/null +++ b/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml @@ -0,0 +1,56 @@ + + + 4.0.0 + + + + + + com.ibm.cicsdev + cics-java-liberty-springboot-transactions + 0.1.0 + + + + + + cics-java-liberty-springboot-transactions-cicsbundle + cics-bundle + CICS Transactions Springboot - CICS Bundle + + + + + + + + ${project.groupId} + cics-java-liberty-springboot-transactions-app + ${project.version} + war + + + + + + + + + + + com.ibm.cics + cics-bundle-maven-plugin + 1.0.8 + true + + ${cics.jvmserver} + + + + + + + + diff --git a/gradle.properties b/gradle.properties index 9fa633b..6ff4c6a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -14,4 +14,12 @@ # For example: gradle build publish. publish_repo_releases_url = 'default-value-for-publish_repo_releases_url' publish_repo_releases_name = 'default-value-for-publish_repo_releases_name' -java_version = 17 \ No newline at end of file +java_version = 17 + +# CICS Configuration +cicsJvmServer=DFHWLP +cicsBomVersion=6.3-20250905155520 + +# Framework Versions +jakartaVersion=10.0.0 +libertyApisVersion=25.0.0.9 \ No newline at end of file diff --git a/pom.xml b/pom.xml index 5632bc8..713a227 100644 --- a/pom.xml +++ b/pom.xml @@ -11,25 +11,27 @@ - - + + + com.ibm.cicsdev cics-java-liberty-springboot-transactions - 0.1.0 - com.ibm.cicsdev.springboot.transactions - Demo project for Spring and Liberty transactions + 0.1.0 + Demo project for Spring Boot and Liberty transactions + pom 17 UTF-8 ${java.version} - ${java.version} - true + ${java.version} + DFHWLP - + + com.ibm.cics com.ibm.cics.ts.bom @@ -40,71 +42,12 @@ - - - - com.ibm.cics - com.ibm.cics.server - - - - - org.springframework.boot - spring-boot-starter-web - - - - - org.springframework.boot - spring-boot-starter-tomcat - provided - - - - - org.springframework - spring-tx - - - - - jakarta.transaction - jakarta.transaction-api - provided - - - - - - war - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - - - - - ${publish_repo_snapshots_name} - ${publish_repo_snapshots_url} - - - ${publish_repo_releases_name} - ${publish_repo_releases_url} - - + + + + + cics-java-liberty-springboot-transactions-app + cics-java-liberty-springboot-transactions-cicsbundle + diff --git a/settings.gradle b/settings.gradle index fbc663b..9689704 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,10 @@ -rootProject.name = 'com.ibm.cicsdev.springboot.transactions' \ No newline at end of file +// ============================================================================ +// Root Project Configuration +// ============================================================================ +rootProject.name = 'cics-java-liberty-springboot-transactions' + +// ============================================================================ +// Subprojects +// ============================================================================ +include(':cics-java-liberty-springboot-transactions-app') +include(':cics-java-liberty-springboot-transactions-cicsbundle') \ No newline at end of file From d7d5084de117a16124215ca02a16d0c7e490a58f Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Wed, 6 May 2026 16:21:06 +0530 Subject: [PATCH 02/13] restructuring of code --- .github/workflows/java.yaml | 48 ++++++------------- .../build.gradle | 2 +- .../pom.xml | 2 +- 3 files changed, 17 insertions(+), 35 deletions(-) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index 1a3ce55..6f1454e 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -9,28 +9,6 @@ on: - cron: '0 0 * * *' jobs: - build-maven: - name: Build Maven - - runs-on: ubuntu-latest - strategy: - matrix: - jdk: [17] - steps: - - uses: actions/checkout@v3 - - name: Set up JDK ${{ matrix.jdk }} - uses: actions/setup-java@v3 - with: - java-version: ${{ matrix.jdk }} - distribution: "semeru" - cache: maven - - name: Build with Maven - run: mvn --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} package - - run: mkdir staging && cp target/*.war staging - - uses: actions/upload-artifact@v4 - with: - name: cics-java-liberty-sprintboot-transactions (Maven, Java ${{ matrix.jdk }}) - path: staging build-mvnw: name: Build Maven Wrapper @@ -38,33 +16,37 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - jdk: [17] + jdk: [17, 21] + steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: ${{ matrix.jdk }} distribution: "semeru" cache: maven - name: Build with Maven - run: ./mvnw --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} package + run: ./mvnw --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} verify - build-gradle: - name: Build Gradle + build-gradlew: + name: Build Gradle wrapper runs-on: ubuntu-latest strategy: matrix: - jdk: [17] + jdk: [17, 21] + steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} uses: actions/setup-java@v4 with: java-version: ${{ matrix.jdk }} distribution: 'semeru' + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v4 - name: Build with Gradle - uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 - with: - arguments: build -Pjava_version=${{ matrix.jdk }} + run: ./gradlew build -Pjava_version=${{ matrix.jdk }} + +# Made with Bob diff --git a/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle b/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle index 37189b5..722a98d 100644 --- a/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle +++ b/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle @@ -28,4 +28,4 @@ cicsBundle { } } -// Made with Bob + diff --git a/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml b/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml index 5e0740f..f5a98c2 100644 --- a/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml +++ b/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml @@ -53,4 +53,4 @@ - + From 8c71bad6e8a5d9e2085bf2bb4d85fdfd85706c10 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Wed, 6 May 2026 16:25:07 +0530 Subject: [PATCH 03/13] java.yml change --- .github/workflows/java.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index 6f1454e..313bb9d 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -48,5 +48,3 @@ jobs: uses: gradle/actions/setup-gradle@v4 - name: Build with Gradle run: ./gradlew build -Pjava_version=${{ matrix.jdk }} - -# Made with Bob From b488bab900d5cd7a072b99c3afd252cc610872ce Mon Sep 17 00:00:00 2001 From: Manvi-55 Date: Wed, 6 May 2026 16:26:41 +0530 Subject: [PATCH 04/13] Potential fix for pull request finding 'CodeQL / Workflow does not contain permissions' Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- .github/workflows/java.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index 313bb9d..ebb82ea 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -8,6 +8,9 @@ on: schedule: - cron: '0 0 * * *' +permissions: + contents: read + jobs: build-mvnw: From a2bb918b5107323b242402b27a1038a218c875c6 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Wed, 6 May 2026 17:50:00 +0530 Subject: [PATCH 05/13] java.yml change --- .github/workflows/java.yaml | 74 ++++++++++++++++++++++++++++++++++--- 1 file changed, 69 insertions(+), 5 deletions(-) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index 313bb9d..58c82b2 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -8,16 +8,50 @@ on: schedule: - cron: '0 0 * * *' +permissions: + contents: read + jobs: + build-maven: + name: Build Maven + + runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} + strategy: + matrix: + jdk: [17, 21] + experimental: [false] + include: + - jdk: 25 + experimental: true + steps: + - uses: actions/checkout@v4 + - name: Set up JDK ${{ matrix.jdk }} + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.jdk }} + distribution: "semeru" + cache: maven + - name: Build with Maven + run: mvn --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} verify + - run: mkdir staging && cp cics-java-liberty-springboot-transactions-app/target/*.war staging + - uses: actions/upload-artifact@v4 + with: + name: cics-java-liberty-springboot-transactions (Maven, Java ${{ matrix.jdk }}) + path: staging build-mvnw: name: Build Maven Wrapper runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: matrix: - jdk: [17, 21] - + jdk: [17, 21] + experimental: [false] + include: + - jdk: 25 + experimental: true steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} @@ -26,17 +60,45 @@ jobs: java-version: ${{ matrix.jdk }} distribution: "semeru" cache: maven - - name: Build with Maven + - name: Build with Maven Wrapper run: ./mvnw --batch-mode --update-snapshots --file pom.xml -Djava.version=${{ matrix.jdk }} verify + build-gradle: + name: Build Gradle + + runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} + strategy: + matrix: + jdk: [17, 21] + experimental: [false] + include: + - jdk: 25 + experimental: true + steps: + - uses: actions/checkout@v4 + - name: Set up JDK ${{ matrix.jdk }} + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.jdk }} + distribution: 'semeru' + - name: Build with Gradle + uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 + with: + arguments: build -Pjava_version=${{ matrix.jdk }} + build-gradlew: name: Build Gradle wrapper runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental }} strategy: matrix: - jdk: [17, 21] - + jdk: [17, 21] + experimental: [false] + include: + - jdk: 25 + experimental: true steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} @@ -48,3 +110,5 @@ jobs: uses: gradle/actions/setup-gradle@v4 - name: Build with Gradle run: ./gradlew build -Pjava_version=${{ matrix.jdk }} + + From ce4d159a95c6248c26fd3f2f841e5c69eed51ca2 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Wed, 6 May 2026 18:00:56 +0530 Subject: [PATCH 06/13] java.yml change --- .github/workflows/java.yaml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/java.yaml b/.github/workflows/java.yaml index 58c82b2..71cf2df 100644 --- a/.github/workflows/java.yaml +++ b/.github/workflows/java.yaml @@ -16,14 +16,9 @@ jobs: name: Build Maven runs-on: ubuntu-latest - continue-on-error: ${{ matrix.experimental }} strategy: matrix: jdk: [17, 21] - experimental: [false] - include: - - jdk: 25 - experimental: true steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} @@ -44,14 +39,9 @@ jobs: name: Build Maven Wrapper runs-on: ubuntu-latest - continue-on-error: ${{ matrix.experimental }} strategy: matrix: jdk: [17, 21] - experimental: [false] - include: - - jdk: 25 - experimental: true steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} @@ -67,14 +57,9 @@ jobs: name: Build Gradle runs-on: ubuntu-latest - continue-on-error: ${{ matrix.experimental }} strategy: matrix: jdk: [17, 21] - experimental: [false] - include: - - jdk: 25 - experimental: true steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} @@ -91,14 +76,9 @@ jobs: name: Build Gradle wrapper runs-on: ubuntu-latest - continue-on-error: ${{ matrix.experimental }} strategy: matrix: jdk: [17, 21] - experimental: [false] - include: - - jdk: 25 - experimental: true steps: - uses: actions/checkout@v4 - name: Set up JDK ${{ matrix.jdk }} From 65461bdbc95dc7e9bbda6bdc25aaabde83d3c9d2 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 12:42:20 +0530 Subject: [PATCH 07/13] removal of publishing section --- .../pom.xml | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/cics-java-liberty-springboot-transactions-app/pom.xml b/cics-java-liberty-springboot-transactions-app/pom.xml index 0e3a9ef..6aaadfd 100644 --- a/cics-java-liberty-springboot-transactions-app/pom.xml +++ b/cics-java-liberty-springboot-transactions-app/pom.xml @@ -83,25 +83,4 @@ - - - - - ${publish_repo_snapshots_name} - ${publish_repo_snapshots_url} - - - ${publish_repo_releases_name} - ${publish_repo_releases_url} - - - From e92abfeedfe981f226246247e7699c7f8e2344b4 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 12:46:23 +0530 Subject: [PATCH 08/13] updated cics.jvmserver --- .../build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle b/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle index 722a98d..722f3a7 100644 --- a/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle +++ b/cics-java-liberty-springboot-transactions-cicsbundle/build.gradle @@ -24,7 +24,7 @@ dependencies { // ============================================================================ cicsBundle { build { - defaultJVMServer = project.findProperty('cics.jvmserver') ?: cicsJvmServer + defaultJVMServer = project.findProperty('cics.jvmserver') ?: 'DFHWLP' } } From 678924ff57c46bdc5fc6c9dc8c32473444517235 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 12:47:34 +0530 Subject: [PATCH 09/13] version change to 1.0.0 --- cics-java-liberty-springboot-transactions-app/.gitignore | 4 ++++ cics-java-liberty-springboot-transactions-app/pom.xml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 cics-java-liberty-springboot-transactions-app/.gitignore diff --git a/cics-java-liberty-springboot-transactions-app/.gitignore b/cics-java-liberty-springboot-transactions-app/.gitignore new file mode 100644 index 0000000..4c91246 --- /dev/null +++ b/cics-java-liberty-springboot-transactions-app/.gitignore @@ -0,0 +1,4 @@ +/.gradle/ +/target/ +/build/ +/bin/ diff --git a/cics-java-liberty-springboot-transactions-app/pom.xml b/cics-java-liberty-springboot-transactions-app/pom.xml index 6aaadfd..c07bbb8 100644 --- a/cics-java-liberty-springboot-transactions-app/pom.xml +++ b/cics-java-liberty-springboot-transactions-app/pom.xml @@ -7,7 +7,7 @@ com.ibm.cicsdev cics-java-liberty-springboot-transactions - 0.1.0 + 1.0.0 ../pom.xml From 5ad30106d0fe2244b63fe703a47154db57b3dd27 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 12:54:36 +0530 Subject: [PATCH 10/13] removal of unused deltas --- gradle.properties | 3 --- 1 file changed, 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 6ff4c6a..bbb2807 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,8 +18,5 @@ java_version = 17 # CICS Configuration cicsJvmServer=DFHWLP -cicsBomVersion=6.3-20250905155520 -# Framework Versions -jakartaVersion=10.0.0 libertyApisVersion=25.0.0.9 \ No newline at end of file From a23178596f5fb9ebf7c76bc5d0283172f44e7279 Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 12:58:35 +0530 Subject: [PATCH 11/13] root pom.xml update to 1.0.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 713a227..90aa10d 100644 --- a/pom.xml +++ b/pom.xml @@ -16,7 +16,7 @@ com.ibm.cicsdev cics-java-liberty-springboot-transactions - 0.1.0 + 1.0.0 Demo project for Spring Boot and Liberty transactions pom From 2bbb45d61d5fe488eecc0b24e9148cc44113f7df Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 13:03:42 +0530 Subject: [PATCH 12/13] pom.xml update --- cics-java-liberty-springboot-transactions-cicsbundle/pom.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml b/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml index f5a98c2..b3dcce5 100644 --- a/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml +++ b/cics-java-liberty-springboot-transactions-cicsbundle/pom.xml @@ -10,7 +10,8 @@ com.ibm.cicsdev cics-java-liberty-springboot-transactions - 0.1.0 + 1.0.0 + ../pom.xml From 444db17f20fa49bd1f0865b1d7c5f0744b1cbc9d Mon Sep 17 00:00:00 2001 From: manvisingh55 Date: Thu, 7 May 2026 14:52:48 +0530 Subject: [PATCH 13/13] removal of unused deltas --- gradle.properties | 5 ----- 1 file changed, 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index bbb2807..ce648b0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -15,8 +15,3 @@ publish_repo_releases_url = 'default-value-for-publish_repo_releases_url' publish_repo_releases_name = 'default-value-for-publish_repo_releases_name' java_version = 17 - -# CICS Configuration -cicsJvmServer=DFHWLP - -libertyApisVersion=25.0.0.9 \ No newline at end of file