Skip to content

Commit

Permalink
Updating README and examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
stewartbryson authored and github-actions[bot] committed Nov 20, 2023
1 parent 4fba73e commit 5bc85e9
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 16 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ is automatically applied by the `snowflake` plugin:
```groovy
plugins {
id 'java'
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}
```

Expand Down Expand Up @@ -216,7 +216,7 @@ Our `plugins` DSL from the build file:
plugins {
id 'java'
id 'groovy' // needed for Spock testing framework
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}
```

Expand Down Expand Up @@ -293,7 +293,7 @@ functionalTest(JvmTestSuite) {
all {
useSpock('2.3-groovy-3.0')
dependencies {
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.9"
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.10"
}
testTask.configure {
failFast true
Expand Down
3 changes: 1 addition & 2 deletions examples/groovy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id 'groovy'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}

repositories {
Expand Down
3 changes: 1 addition & 2 deletions examples/java-external-stage/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id 'java'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}

repositories {
Expand Down
6 changes: 3 additions & 3 deletions examples/java-testing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id 'java'
id 'groovy' // needed for Spock testing framework
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
id 'com.adarshr.test-logger' version '4.0.0' // added for testing
id 'com.github.ben-manes.versions' version '0.49.0'
id 'com.github.ben-manes.versions' version '0.50.0'
}

repositories {
Expand Down Expand Up @@ -43,7 +43,7 @@ testing {
all {
useSpock('2.3-groovy-3.0')
dependencies {
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.9"
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.10"
}
testTask.configure {
failFast true
Expand Down
3 changes: 1 addition & 2 deletions examples/java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id 'java'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}

repositories {
Expand Down
3 changes: 1 addition & 2 deletions examples/kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
plugins {
id "org.jetbrains.kotlin.jvm" version "1.8.21"
id 'com.github.ben-manes.versions' version '0.49.0'
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}

repositories {
Expand Down
4 changes: 2 additions & 2 deletions examples/scala/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'scala'
id 'com.github.ben-manes.versions' version '0.49.0'
id 'io.github.stewartbryson.snowflake' version '2.1.9'
id 'com.github.ben-manes.versions' version '0.50.0'
id 'io.github.stewartbryson.snowflake' version '2.1.10'
}

repositories {
Expand Down

0 comments on commit 5bc85e9

Please sign in to comment.