You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+19-1Lines changed: 19 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,25 @@ The CICS bundle contains several elements
24
24
4. A WARBUNDLE containing the built Java WAR.
25
25
26
26
## Building
27
-
*TODO*
27
+
There are several ways to build this project. We suggest you build with a build toolkit such as Gradle or Maven:
28
+
29
+
### Building with Gradle
30
+
Run the following command from the `cics-eventprocessing-java` directory:
31
+
32
+
```sh
33
+
./gradlew assemble
34
+
```
35
+
36
+
This will compile the Java code, build a WAR file and package it and the EP adapter and Event binding into a CICS bundle as a ZIP file at `./cics-eventprocessing-java-bundle/build/distributions/cics-eventprocessing-java-bundle-0.0.1-SNAPSHOT.zip`
37
+
38
+
### Building with Maven
39
+
Run the following command from the `cics-eventprocessing-java` directory:
40
+
41
+
```sh
42
+
mvn verify
43
+
```
44
+
45
+
This will compile the Java code, build a WAR file and package it and the EP adapter and Event binding into a CICS bundle as a ZIP file at `.cics-eventprocessing-java-bundle/target/cics-eventprocessing-java-bundle-0.0.1-SNAPSHOT.zip`
28
46
29
47
## Configuration
30
48
You'll need to define a Liberty JVM server with the name `DFHWLP`. This name can be modified in the `pom.xml` of the cics-eventprocessing-java-bundle module.
0 commit comments