-
Notifications
You must be signed in to change notification settings - Fork 2
restructuring of code #17
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
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
0b20b2f
restructuring of code
Manvi-55 d7d5084
restructuring of code
Manvi-55 8c71bad
java.yml change
Manvi-55 b488bab
Potential fix for pull request finding 'CodeQL / Workflow does not co…
Manvi-55 a2bb918
java.yml change
Manvi-55 caaac33
Merge branch 'main' of https://github.com/cicsdev/cics-java-liberty-s…
Manvi-55 ec7c5c0
Merge branch 'main' of
Manvi-55 ce4d159
java.yml change
Manvi-55 65461bd
removal of publishing section
Manvi-55 e92abfe
updated cics.jvmserver
Manvi-55 678924f
version change to 1.0.0
Manvi-55 5ad3010
removal of unused deltas
Manvi-55 a231785
root pom.xml update to 1.0.0
Manvi-55 2bbb45d
pom.xml update
Manvi-55 444db17
removal of unused deltas
Manvi-55 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| /.gradle/ | ||
| /target/ | ||
| /build/ | ||
| /bin/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
cics-java-liberty-springboot-transactions-app/build.properties
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| source.. = src/main/java/ | ||
| bin.includes = META-INF/,. | ||
| output.. = bin/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,86 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <!-- Inherit from parent POM --> | ||
| <parent> | ||
| <groupId>com.ibm.cicsdev</groupId> | ||
| <artifactId>cics-java-liberty-springboot-transactions</artifactId> | ||
| <version>1.0.0</version> | ||
| <relativePath>../pom.xml</relativePath> | ||
| </parent> | ||
|
|
||
| <!-- Application module properties --> | ||
| <artifactId>cics-java-liberty-springboot-transactions-app</artifactId> | ||
| <name>com.ibm.cicsdev.springboot.transactions.app</name> | ||
| <description>Demo project for Spring and Liberty transactions</description> | ||
|
|
||
| <properties> | ||
| <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> | ||
| <spring-boot.repackage.skip>true</spring-boot.repackage.skip> | ||
| </properties> | ||
|
|
||
| <!-- CICS TS V6.1 BOM (as of Sept 2024) --> | ||
| <dependencyManagement> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>com.ibm.cics</groupId> | ||
| <artifactId>com.ibm.cics.ts.bom</artifactId> | ||
| <version>6.1-20250812133513-PH63856</version> | ||
| <type>pom</type> | ||
| <scope>import</scope> | ||
| </dependency> | ||
| </dependencies> | ||
| </dependencyManagement> | ||
|
|
||
| <dependencies> | ||
| <!-- Compile against, but don't include JCICS in the final build (version and scope are from BOM) --> | ||
| <dependency> | ||
| <groupId>com.ibm.cics</groupId> | ||
| <artifactId>com.ibm.cics.server</artifactId> | ||
| </dependency> | ||
|
|
||
| <!-- Spring Boot web support --> | ||
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-web</artifactId> | ||
| </dependency> | ||
|
|
||
| <!-- Compile against, but don't include TomCat in the runtime build --> | ||
| <dependency> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-starter-tomcat</artifactId> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
|
|
||
| <!-- Spring-transactions --> | ||
| <dependency> | ||
| <groupId>org.springframework</groupId> | ||
| <artifactId>spring-tx</artifactId> | ||
| </dependency> | ||
|
|
||
| <!-- Compile against, but don't include javax.transaction API --> | ||
| <dependency> | ||
| <groupId>jakarta.transaction</groupId> | ||
| <artifactId>jakarta.transaction-api</artifactId> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
|
|
||
| </dependencies> | ||
|
|
||
| <!-- Package as an executable war (default jar) --> | ||
| <packaging>war</packaging> | ||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.springframework.boot</groupId> | ||
| <artifactId>spring-boot-maven-plugin</artifactId> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
| </project> |
31 changes: 31 additions & 0 deletions
31
cics-java-liberty-springboot-transactions-cicsbundle/build.gradle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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') ?: 'DFHWLP' | ||
| } | ||
| } | ||
|
|
||
|
|
57 changes: 57 additions & 0 deletions
57
cics-java-liberty-springboot-transactions-cicsbundle/pom.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <!-- ================================================================ --> | ||
| <!-- Parent Project --> | ||
| <!-- ================================================================ --> | ||
| <parent> | ||
| <groupId>com.ibm.cicsdev</groupId> | ||
| <artifactId>cics-java-liberty-springboot-transactions</artifactId> | ||
| <version>1.0.0</version> | ||
| <relativePath>../pom.xml</relativePath> | ||
| </parent> | ||
|
|
||
| <!-- ================================================================ --> | ||
| <!-- Project Coordinates --> | ||
| <!-- ================================================================ --> | ||
| <artifactId>cics-java-liberty-springboot-transactions-cicsbundle</artifactId> | ||
| <packaging>cics-bundle</packaging> | ||
| <name>CICS Transactions Springboot - CICS Bundle</name> | ||
|
|
||
| <!-- ================================================================ --> | ||
| <!-- Dependencies --> | ||
| <!-- ================================================================ --> | ||
| <dependencies> | ||
| <!-- Application WAR --> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>cics-java-liberty-springboot-transactions-app</artifactId> | ||
| <version>${project.version}</version> | ||
| <type>war</type> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <!-- ================================================================ --> | ||
| <!-- Build Configuration --> | ||
| <!-- ================================================================ --> | ||
| <build> | ||
| <plugins> | ||
| <!-- CICS Bundle Maven Plugin --> | ||
| <plugin> | ||
| <groupId>com.ibm.cics</groupId> | ||
| <artifactId>cics-bundle-maven-plugin</artifactId> | ||
| <version>1.0.8</version> | ||
| <extensions>true</extensions> | ||
| <configuration> | ||
| <defaultjvmserver>${cics.jvmserver}</defaultjvmserver> | ||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
|
|
||
| </project> | ||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.