Skip to content

Commit 0540e6c

Browse files
Improve project names
1 parent 00dc5c1 commit 0540e6c

File tree

10 files changed

+7
-7
lines changed

10 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Example code of how to use CICS event processing in the Java programming languag
44
## Structure
55
The project consists of two Maven modules:
66

7-
1. cics-eventprocessing-java-code - The Java source code for this example
7+
1. cics-eventprocessing-java-webapp - The Java source code for this example
88
2. cics-eventprocessing-java-bundle - The bundle definition for this example
99

1010
## Code Structure
@@ -47,7 +47,7 @@ The Liberty JVM server will need the `cicsts:core-1.0`, `cicsts:link-1.0` and `s
4747
*TODO*
4848

4949
## Running
50-
1. Use a browser to target the address http://my.zos:9080/cics-eventprocessing-java-code/emit?name=EVENT replacing `my.zos` with the hostname of your z/OS system and `9080` with the port the Liberty JVM server is listening on.
50+
1. Use a browser to target the address http://my.zos:9080/cics-eventprocessing-java-webapp/emit?name=EVENT replacing `my.zos` with the hostname of your z/OS system and `9080` with the port the Liberty JVM server is listening on.
5151
2. View the JVM server CURRENT.STDOUT file, this should contain two log messages
5252
* Emitted event
5353
* Consumed event

cics-eventprocessing-java/cics-eventprocessing-java-bundle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<version>0.0.1-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>cics-eventprocessing-java-bundle</artifactId>
13-
<name>cics-eventprocessing-java-bundle</name>
13+
<name>cics-eventprocessing-java - CICS bundle</name>
1414
<url>http://maven.apache.org</url>
1515
<properties>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

cics-eventprocessing-java/cics-eventprocessing-java-code/.classpath renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/.classpath

File renamed without changes.

cics-eventprocessing-java/cics-eventprocessing-java-code/.project renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/.project

File renamed without changes.

cics-eventprocessing-java/cics-eventprocessing-java-code/pom.xml renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<artifactId>cics-eventprocessing-java</artifactId>
1010
<version>0.0.1-SNAPSHOT</version>
1111
</parent>
12-
<artifactId>cics-eventprocessing-java-code</artifactId>
12+
<artifactId>cics-eventprocessing-java-webapp</artifactId>
1313
<packaging>war</packaging>
14-
<name>cics-eventprocessing-java-code Maven Webapp</name>
14+
<name>cics-eventprocessing-java - Webapp</name>
1515
<url>http://maven.apache.org</url>
1616

1717
<dependencies>
@@ -35,7 +35,7 @@
3535
</dependency>
3636
</dependencies>
3737
<build>
38-
<finalName>cics-eventprocessing-java-code</finalName>
38+
<finalName>cics-eventprocessing-java-webapp</finalName>
3939
<plugins>
4040
<plugin>
4141
<artifactId>maven-compiler-plugin</artifactId>

cics-eventprocessing-java/cics-eventprocessing-java-code/src/main/java/com/ibm/cicsdev/eventprocessing/EventConsumer.java renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/src/main/java/com/ibm/cicsdev/eventprocessing/EventConsumer.java

File renamed without changes.

cics-eventprocessing-java/cics-eventprocessing-java-code/src/main/java/com/ibm/cicsdev/eventprocessing/EventData.java renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/src/main/java/com/ibm/cicsdev/eventprocessing/EventData.java

File renamed without changes.

cics-eventprocessing-java/cics-eventprocessing-java-code/src/main/java/com/ibm/cicsdev/eventprocessing/EventEmitter.java renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/src/main/java/com/ibm/cicsdev/eventprocessing/EventEmitter.java

File renamed without changes.

cics-eventprocessing-java/cics-eventprocessing-java-code/src/main/webapp/WEB-INF/web.xml renamed to cics-eventprocessing-java/cics-eventprocessing-java-webapp/src/main/webapp/WEB-INF/web.xml

File renamed without changes.

cics-eventprocessing-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
<url>https://github.com/cicsdev/cics-eventprocessing-java</url>
4545
<modules>
46-
<module>cics-eventprocessing-java-code</module>
46+
<module>cics-eventprocessing-java-webapp</module>
4747
<module>cics-eventprocessing-java-bundle</module>
4848
</modules>
4949
</project>

0 commit comments

Comments
 (0)