Skip to content

Commit a3c9828

Browse files
committed
build section restyle
1 parent 2bd1490 commit a3c9828

File tree

1 file changed

+32
-12
lines changed

1 file changed

+32
-12
lines changed

README.md

Lines changed: 32 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,22 @@ A WAR file is created inside the `build/libs` directory and a CICS bundle ZIP fi
5151

5252
If using the CICS bundle ZIP, the default CICS JVM server name `DFHWLP` should be modified using the `cics.jvmserver` property in the gradle build [file](build.gradle) to match the required CICS JVMSERVER resource name, or alternatively can be set on the command line.
5353

54-
| Tool | Command |
55-
| ----------- | ----------- |
56-
| Gradle Wrapper (Linux/Mac) | ```./gradlew clean build``` |
57-
| Gradle Wrapper (Windows) | ```gradle.bat clean build``` |
58-
| Gradle (command-line) | ```gradle clean build``` |
59-
| Gradle (command-line & setting jvmserver) | ```gradle clean build -Pcics.jvmserver=MYJVM``` |
54+
**Gradle Wrapper (Linux/Mac):**
55+
```shell
56+
./gradlew clean build
57+
```
58+
**Gradle Wrapper (Windows):**
59+
```shell
60+
gradle.bat clean build
61+
```
62+
**Gradle (command-line):**
63+
```shell
64+
gradle clean build
65+
```
66+
**Gradle (command-line & setting jvmserver):**
67+
```shell
68+
gradle clean build -Pcics.jvmserver=MYJVM
69+
```
6070

6171
### Building with Maven
6272

@@ -68,12 +78,22 @@ Next, run the appropriate Maven build command. This creates a WAR file in the `t
6878

6979
If building a CICS bundle ZIP the CICS bundle plugin bundle-war goal is driven using the maven verify phase. The CICS JVM server name should be modified in the `<cics.jvmserver>` property in the [`pom.xml`](pom.xml) to match the required CICS JVMSERVER resource name, or alternatively can be set on the command line.
7080

71-
| Tool | Command |
72-
| ----------- | ----------- |
73-
| Maven Wrapper (Linux/Mac) | ```./mvnw clean verify``` |
74-
| Maven Wrapper (Windows) | ```mvnw.cmd clean verify``` |
75-
| Maven (command-line) | ```mvn clean verify``` |
76-
| Maven (command-line & setting jvmserver) | ```mvn clean verify -Dcics.jvmserver=MYJVM``` |
81+
**Maven Wrapper (Linux/Mac):**
82+
```shell
83+
./mvnw clean verify
84+
```
85+
**Maven Wrapper (Windows):**
86+
```shell
87+
mvnw.cmd clean verify
88+
```
89+
**Maven (command-line):**
90+
```shell
91+
mvn clean verify
92+
```
93+
**Maven (command-line & setting jvmserver):**
94+
```shell
95+
mvn clean verify -Dcics.jvmserver=MYJVM
96+
```
7797

7898
## Deployment
7999
### To start a JVM server in CICS:

0 commit comments

Comments
 (0)