Skip to content

Commit

Permalink
Merge pull request #82 from tom-foyle/master
Browse files Browse the repository at this point in the history
Typos and minor corrections to samples
  • Loading branch information
tom-foyle authored Jun 30, 2020
2 parents e1248fd + f08d2e8 commit 28ebebb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
2 changes: 1 addition & 1 deletion samples/gradle-multipart-sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Edit the variables in the `cicsBundle` block of the `gradle-bundle-demo/build.gr

When the parent project is built, all its children will also be built.

To build all modules and package the bundle parts into a zipped CICS bundle, change to the `gradle-bundle-demo` directory and run:
To build all modules and package the bundle parts into a zipped CICS bundle, change to the `gradle-multipart-sample` directory and run:
```
./gradlew build
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ cicsBundle {
bunddef = 'MYBUN'
csdgroup = 'MYGROUP'
url = 'myserver.site.domain.com:1234'
username = project.cicsUser // Define my_username in gradle.properties file
password = project.cicsPass // Define my_password in gradle.properties file
//caution: uncomment the line below to disable TLS/SSL checking for certificates
username = project.cicsUser // Define cicsUser in gradle.properties file
password = project.cicsPass // Define cicsPass in gradle.properties file
// Caution: uncomment the line below to disable TLS/SSL checking for certificates
//insecure = true
}
}
Expand Down
10 changes: 6 additions & 4 deletions samples/gradle-war-sample/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Standalone project sample (gradle-war-sample)
This sample shows how you can configure an existing WAR project to build a CICS bundle. The `standalone-war-demo` directory would be your existing WAR project in a Gralde project. The WAR project is configured (in `standalone-war-demo/build.gradle`) to package its generated WAR as a bundle part into a CICS bundle and deploy the bundle to CICS.
This sample shows how you can configure an existing WAR project to build a CICS bundle. The `standalone-war-demo` directory would be your existing WAR project in a Gradle project. The WAR project is configured (in `standalone-war-demo/build.gradle`) to package its generated WAR as a bundle part into a CICS bundle and deploy the bundle to CICS.

# Set Up
Have your system programmer create your BUNDLE definition in CSD.
Expand All @@ -24,11 +24,13 @@ cicsBundle {
deploy {
cicsplex = 'MYPLEX'
region = 'MYREGION'
bunddef = 'MYBUND'
bunddef = 'MYBUN'
csdgroup = 'MYGROUP'
url = 'myserver.site.domain.com:1234'
username = project.cicsUser // Define my_username in gradle.properties file
password = project.cicsPass // Define my_password in gradle.properties file
username = project.cicsUser // Define cicsUser in gradle.properties file
password = project.cicsPass // Define cicsPass in gradle.properties file
// Caution: uncomment the line below to disable TLS/SSL checking for certificates
//insecure = true
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions samples/gradle-war-sample/standalone-war-demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ cicsBundle {
bunddef = 'MYBUN'
csdgroup = 'MYGROUP'
url = 'myserver.site.domain.com:1234'
username = project.cicsUser // Define my_username in gradle.properties file
password = project.cicsPass // Define my_password in gradle.properties file
//caution: uncomment the line below to disable TLS/SSL checking for certificates
username = project.cicsUser // Define cicsUser in gradle.properties file
password = project.cicsPass // Define cicsPass in gradle.properties file
// Caution: uncomment the line below to disable TLS/SSL checking for certificates
//insecure = true
}
}
Expand Down

0 comments on commit 28ebebb

Please sign in to comment.