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 Apr 4, 2024
1 parent c627d3b commit a3cbed3
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Recent changes

### Java 17 Support
To support Java 17, we also had to add support for the `RUNTIME_VERSION` option when creating procedures and functions with JVM languages.
The `runtime` parameter was added to the `applications` DSL to support this change, but the default value will stay `11` for now.
To support Java 17, we needed to add support for the `RUNTIME_VERSION` option when creating procedures and functions with JVM languages.
The `runtime` parameter was added to the `applications` DSL to support this change, but the default value will stay `11` for now to align with the Snowflake default.

Additionally, Java 17 is also being used now to compile and build this plugin.

Expand Down Expand Up @@ -62,7 +62,7 @@ is automatically applied by the `snowflake` plugin:
```groovy
plugins {
id 'java'
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}
```

Expand Down Expand Up @@ -221,7 +221,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.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}
```

Expand Down Expand Up @@ -298,7 +298,7 @@ functionalTest(JvmTestSuite) {
all {
useSpock('2.3-groovy-3.0')
dependencies {
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.16"
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.17"
}
testTask.configure {
failFast true
Expand Down
2 changes: 1 addition & 1 deletion examples/groovy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'groovy'
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/java-external-stage/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}

repositories {
Expand Down
4 changes: 2 additions & 2 deletions examples/java-testing/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'groovy' // needed for Spock testing framework
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
id 'com.adarshr.test-logger' version '4.0.0' // added for testing
id 'com.github.ben-manes.versions' version '0.51.0'
}
Expand Down Expand Up @@ -44,7 +44,7 @@ testing {
all {
useSpock('2.3-groovy-3.0')
dependencies {
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.16"
implementation "io.github.stewartbryson:gradle-snowflake-plugin:2.1.17"
}
testTask.configure {
failFast true
Expand Down
2 changes: 1 addition & 1 deletion examples/java/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id 'java'
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/kotlin/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "org.jetbrains.kotlin.jvm" version "1.8.21"
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion 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.51.0'
id 'io.github.stewartbryson.snowflake' version '2.1.16'
id 'io.github.stewartbryson.snowflake' version '2.1.17'
}

repositories {
Expand Down

0 comments on commit a3cbed3

Please sign in to comment.