Skip to content

Commit

Permalink
Merge pull request #83 from ledina/release1.0.1
Browse files Browse the repository at this point in the history
Prep for release 1.0.1
  • Loading branch information
ledina authored Aug 5, 2020
2 parents 28ebebb + 626fe58 commit 2060cf2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ In either case, configure the Gradle module as follows:
1. Add the plugin id to your `build.gradle`.
```gradle
plugins {
id 'com.ibm.cics.bundle' version '1.0.0'
id 'com.ibm.cics.bundle' version '1.0.1'
}
```
1. If using a snapshot version of the plugin, add the snapshot repository to your `settings.gradle`, so Gradle can find the plugin.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {
}

group = "com.ibm.cics"
version = "1.0.1-SNAPSHOT"
version = "1.0.1"
val isReleaseVersion by extra(!version.toString().endsWith("SNAPSHOT"))

gradlePlugin {
Expand Down Expand Up @@ -84,7 +84,7 @@ repositories {
defaultTasks("build")

dependencies {
implementation("com.ibm.cics:cics-bundle-common:1.0.1")
implementation("com.ibm.cics:cics-bundle-common:1.0.2")
testImplementation("junit:junit:4.12")
testImplementation("com.github.tomakehurst:wiremock-jre8:2.25.1")
testImplementation("org.spockframework:spock-core:1.1-groovy-2.4") {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.ibm.cics.bundle' version '1.0.0'
id 'com.ibm.cics.bundle' version '1.0.1'
}

group 'com.ibm.cics'
Expand Down
2 changes: 1 addition & 1 deletion samples/gradle-war-sample/standalone-war-demo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.ibm.cics.bundle' version '1.0.0'
id 'com.ibm.cics.bundle' version '1.0.1'
id 'war'
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/com/ibm/cics/cbgp/DeployBundleTask.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ open class DeployBundleTask : DefaultTask() {
@Input
val username = bundleExtension.deploy.username
@Input
val password = bundleExtension.deploy.password
val password = bundleExtension.deploy.password.toCharArray()
@Input
val insecure = bundleExtension.deploy.insecure

Expand Down

0 comments on commit 2060cf2

Please sign in to comment.