diff --git a/samples/gradle-multipart-sample/README.md b/samples/gradle-multipart-sample/README.md index 18e2c97..acabc68 100644 --- a/samples/gradle-multipart-sample/README.md +++ b/samples/gradle-multipart-sample/README.md @@ -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 ``` diff --git a/samples/gradle-multipart-sample/gradle-bundle-demo/build.gradle b/samples/gradle-multipart-sample/gradle-bundle-demo/build.gradle index 5931705..8b60a2b 100644 --- a/samples/gradle-multipart-sample/gradle-bundle-demo/build.gradle +++ b/samples/gradle-multipart-sample/gradle-bundle-demo/build.gradle @@ -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 } } diff --git a/samples/gradle-war-sample/README.md b/samples/gradle-war-sample/README.md index 32ed4c6..f9bd490 100644 --- a/samples/gradle-war-sample/README.md +++ b/samples/gradle-war-sample/README.md @@ -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. @@ -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 } } ``` diff --git a/samples/gradle-war-sample/standalone-war-demo/build.gradle b/samples/gradle-war-sample/standalone-war-demo/build.gradle index 4c37811..7a48f8a 100644 --- a/samples/gradle-war-sample/standalone-war-demo/build.gradle +++ b/samples/gradle-war-sample/standalone-war-demo/build.gradle @@ -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 } }