Skip to content

Commit

Permalink
Merge pull request #114 from ind1go/update-version
Browse files Browse the repository at this point in the history
Release 1.0.3
  • Loading branch information
ledina authored Mar 22, 2022
2 parents d685e43 + dfbc229 commit d50752d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:

- name: Build Gradle War Sample
working-directory: ./samples/gradle-war-sample
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace --include-build ../..

- name: Build Gradle Multipart Sample
working-directory: ./samples/gradle-multipart-sample
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace --include-build ../..
4 changes: 2 additions & 2 deletions .github/workflows/gradle-scheduled-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:

- name: Build Gradle War Sample
working-directory: ./samples/gradle-war-sample
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace --include-build ../..

- name: Build Gradle Multipart Sample
working-directory: ./samples/gradle-multipart-sample
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace
run: ./gradlew build -PcicsUser=user -PcicsPass=pass --no-daemon --info --stacktrace --include-build ../..
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,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.2'
id 'com.ibm.cics.bundle' version '1.0.3'
}
```
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
2 changes: 1 addition & 1 deletion 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.3-SNAPSHOT"
version = "1.0.3"
val isReleaseVersion by extra(!version.toString().endsWith("SNAPSHOT"))

gradlePlugin {
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.2'
id 'com.ibm.cics.bundle' version '1.0.3'
}

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.2'
id 'com.ibm.cics.bundle' version '1.0.3'
id 'war'
}

Expand Down

0 comments on commit d50752d

Please sign in to comment.