Skip to content

Commit

Permalink
Merge pull request #249 from ind1go/develop-1.0.8-snapshot
Browse files Browse the repository at this point in the history
Prepare for development of 1.0.8-SNAPSHOT
  • Loading branch information
ledina authored Nov 7, 2024
2 parents 42f23fb + 424ee65 commit 253004c
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions ARCHETYPES-README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Another way to get started with the plugin is to use one of the provided archety
By using `cics-bundle-reactor-archetype`, you are provided with a reactor (multi-module build) module, containing a CICS bundle module and a dynamic Web (WAR) module. The CICS bundle is preconfigured to depend on the WAR module. Building the reactor module builds both the children, so you end up with a CICS bundle that contains the built WAR file. If you use the `cics-bundle-deploy-reactor-archetype` archetype, this is extended to install the CICS bundle in CICS using the CICS bundle deployment API.


1. Create a Maven module by referring to the either the [`com.ibm.cics:cics-bundle-reactor-archetype`](https://search.maven.org/artifact/com.ibm.cics/cics-bundle-reactor-archetype/1.0.3/maven-archetype) or [`com.ibm.cics:cics-bundle-deploy-reactor-archetype`](https://search.maven.org/artifact/com.ibm.cics/cics-bundle-deploy-reactor-archetype/1.0.3/maven-archetype) artifact:
1. Create a Maven module by referring to the either the [`com.ibm.cics:cics-bundle-reactor-archetype`](https://search.maven.org/artifact/com.ibm.cics/cics-bundle-reactor-archetype/1.0.7/maven-archetype) or [`com.ibm.cics:cics-bundle-deploy-reactor-archetype`](https://search.maven.org/artifact/com.ibm.cics/cics-bundle-deploy-reactor-archetype/1.0.7/maven-archetype) artifact:

* ![On command line](images/cmd.png) On command line:

```
mvn archetype:generate -DarchetypeGroupId=com.ibm.cics -DarchetypeArtifactId=cics-bundle-deploy-reactor-archetype -DarchetypeVersion=1.0.3 -DgroupId=<my-groupid> -DartifactId=<my-artifactId>
mvn archetype:generate -DarchetypeGroupId=com.ibm.cics -DarchetypeArtifactId=cics-bundle-deploy-reactor-archetype -DarchetypeVersion=1.0.7 -DgroupId=<my-groupid> -DartifactId=<my-artifactId>
```
In the pom.xml file of the bundle module there will be default values for each of the following parameters which you will need to set:
`defaultjvmserver`, `bunddef`, `csdgroup`, `username`, `password`, `deployURL`, `cicsplex`, `region`
Expand All @@ -22,7 +22,7 @@ By using `cics-bundle-reactor-archetype`, you are provided with a reactor (multi

Archetype Group Id: `com.ibm.cics`
Archetype Artifact Id: `cics-bundle-deploy-reactor-archetype`
Archetype Version: `1.0.3`
Archetype Version: `1.0.7`

Then hit **OK**.
1. From the archetype list, select `cics-bundle-deploy-reactor-archetype` and hit **Next**
Expand Down
2 changes: 1 addition & 1 deletion cics-bundle-deploy-reactor-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
</parent>

<artifactId>cics-bundle-deploy-reactor-archetype</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cics-bundle-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
</parent>

<artifactId>cics-bundle-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cics-bundle-maven-site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
</parent>
<artifactId>cics-bundle-maven-site</artifactId>
<packaging>pom</packaging>
Expand Down
2 changes: 1 addition & 1 deletion cics-bundle-reactor-archetype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
</parent>

<artifactId>cics-bundle-reactor-archetype</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
<packaging>pom</packaging>

<name>CICS Bundle Maven Parent</name>
Expand Down
2 changes: 1 addition & 1 deletion samples/bundle-reactor-deploy/demo-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<plugin>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven-plugin</artifactId>
<version>1.0.3</version>
<version>1.0.7</version>
<extensions>true</extensions>

<!-- Set the JVM server that the application will be installed into by default, This goes into the CICS bundle's manifest -->
Expand Down
2 changes: 1 addition & 1 deletion samples/bundle-war-deploy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you have an existing Java Maven project, add the snippet shown below to the p
<plugin>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven-plugin</artifactId>
<version>1.0.3</version>
<version>1.0.7</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion samples/bundle-war-deploy/demo-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<plugin>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven-plugin</artifactId>
<version>1.0.3</version>
<version>1.0.7</version>
<executions>
<execution>

Expand Down
6 changes: 3 additions & 3 deletions samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
<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>
<artifactId>samples</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
<packaging>pom</packaging>
<parent>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
</parent>

<dependencies>
<!-- This will be installed from this build into the invoker's repo by invoker:install -->
<dependency>
<groupId>com.ibm.cics</groupId>
<artifactId>cics-bundle-maven-plugin</artifactId>
<version>1.0.7</version>
<version>1.0.8-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 253004c

Please sign in to comment.