Skip to content

Commit 1a4595c

Browse files
committed
build section restyle
1 parent 7837450 commit 1a4595c

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
@@ -62,25 +62,45 @@ A WAR file is created inside the `build/libs` directory and a CICS bundle ZIP fi
6262

6363
If using the CICS bundle ZIP, the CICS JVM server name should be modified in 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.
6464

65-
| Tool | Command |
66-
| ----------- | ----------- |
67-
| Gradle Wrapper (Linux/Mac) | ```./gradlew clean build``` |
68-
| Gradle Wrapper (Windows) | ```gradle.bat clean build``` |
69-
| Gradle (command-line) | ```gradle clean build``` |
70-
| Gradle (command-line & setting jvmserver) | ```gradle clean build -Pcics.jvmserver=MYJVM``` |
65+
**Gradle Wrapper (Linux/Mac):**
66+
```shell
67+
./gradlew clean build
68+
```
69+
**Gradle Wrapper (Windows):**
70+
```shell
71+
gradle.bat clean build
72+
```
73+
**Gradle (command-line):**
74+
```shell
75+
gradle clean build
76+
```
77+
**Gradle (command-line & setting jvmserver):**
78+
```shell
79+
gradle clean build -Pcics.jvmserver=MYJVM
80+
```
7181

7282

7383
### Building with Apache Maven
7484
A WAR file and a CICS bundle ZIP file are created inside the `target/` directory.
7585

7686
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.
7787

78-
Tool | Command |
79-
| ----------- | ----------- |
80-
| Maven Wrapper (Linux/Mac) | ```./mvnw clean verify``` |
81-
| Maven Wrapper (Windows) | ```mvnw.cmd clean verify``` |
82-
| Maven (command-line) | ```mvn clean verify``` |
83-
| Maven (command-line & setting jvmserver) | ```mvn clean verify -Dcics.jvmserver=MYJVM``` |
88+
**Maven Wrapper (Linux/Mac):**
89+
```shell
90+
./mvnw clean verify
91+
```
92+
**Maven Wrapper (Windows):**
93+
```shell
94+
mvnw.cmd clean verify
95+
```
96+
**Maven (command-line):**
97+
```shell
98+
mvn clean verify
99+
```
100+
**Maven (command-line & setting jvmserver):**
101+
```shell
102+
mvn clean verify -Dcics.jvmserver=MYJVM
103+
```
84104

85105
## Deployment
86106
### To start a JVM server in CICS:

0 commit comments

Comments
 (0)