-
Notifications
You must be signed in to change notification settings - Fork 2
several changes needed for updating build #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
23ccf08
308c610
3cc81b8
a5c457d
e799d13
779fa89
ab51b8d
0b3b220
3617dbd
95e65ad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| distributionBase=GRADLE_USER_HOME | ||
| distributionPath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-rc-1-bin.zip | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
|
IvanHargreaves marked this conversation as resolved.
|
||
| zipStoreBase=GRADLE_USER_HOME | ||
| zipStorePath=wrapper/dists | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,22 +7,24 @@ | |
| <parent> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-parent</artifactId> | ||
| <version>2.7.0</version> | ||
| <version>3.5.9</version> | ||
| <relativePath/> | ||
| </parent> | ||
|
|
||
|
|
||
| <!-- Application properties --> | ||
| <groupId>com.ibm.cicsdev</groupId> | ||
| <artifactId>cics-java-liberty-springboot-transactions</artifactId> | ||
| <version>0.1.0</version> | ||
| <name>com.ibm.cicsdev.springboot.transactions</name> | ||
| <description>Demo project for Spring and Liberty transactions</description> | ||
|
|
||
| <properties> | ||
| <java.version>1.8</java.version> | ||
|
|
||
| <java.version>17</java.version> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <maven.compiler.target>${java.version}</maven.compiler.target> | ||
| <maven.compiler.source>${java.version}</maven.compiler.source> | ||
| <maven.compiler.source>${java.version}</maven.compiler.source> | ||
| <spring-boot.repackage.skip>true</spring-boot.repackage.skip> | ||
| </properties> | ||
|
|
||
| <!-- CICS BOM (as of May 2020) --> | ||
|
|
@@ -31,7 +33,7 @@ | |
| <dependency> | ||
| <groupId>com.ibm.cics</groupId> | ||
| <artifactId>com.ibm.cics.ts.bom</artifactId> | ||
| <version>5.5-20200519131930-PH25409</version> | ||
| <version>6.1-20250812133513-PH63856</version> | ||
| <type>pom</type> | ||
| <scope>import</scope> | ||
| </dependency> | ||
|
|
@@ -66,8 +68,9 @@ | |
|
|
||
| <!-- Compile against, but don't include javax.transaction API --> | ||
| <dependency> | ||
| <groupId>javax.transaction</groupId> | ||
| <artifactId>javax.transaction-api</artifactId> | ||
| <groupId>jakarta.transaction</groupId> | ||
| <artifactId>jakarta.transaction-api</artifactId> | ||
| <version>1.3</version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There is no version 1.3 of jakarta.transaction-api so this doesn't build.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. changed to jakarta |
||
| <scope>provided</scope> | ||
| </dependency> | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.