Skip to content

Commit b47f4aa

Browse files
authored
Merge pull request #7 from savant-build/degroff/groovy_java21
Update Groovy to 4.0.22 in support of Java 21
2 parents 98cb209 + 4be1c98 commit b47f4aa

File tree

3 files changed

+73
-83
lines changed

3 files changed

+73
-83
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Savant Build Tool ![semver 2.0.0 compliant](http://img.shields.io/badge/semver-2.0.0-brightgreen.svg?style=flat-square)
22

3-
Welcome to the Savant Build Tool Github project. Savant is a build tool written in Java that uses a Groovy DSL for the build files. Savant is also compliant with the Semantic Versioning specification (http://semver.org) and aims to solve many of the common issues with build tools and dependency management systems.
3+
Welcome to the Savant Build Tool GitHub project. Savant is a build tool written in Java that uses a Groovy DSL for the build files. Savant is also compliant with the Semantic Versioning specification (http://semver.org) and aims to solve many of the common issues with build tools and dependency management systems.
44

5-
All of the steps required to get started with Savant are covered in the project's [documentation](https://github.com/inversoft/savant-core/wiki/Home).
5+
All the steps required to get started with Savant are covered in the project's [documentation](https://github.com/inversoft/savant-core/wiki/Home).

build.savant

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* either express or implied. See the License for the specific
1414
* language governing permissions and limitations under the License.
1515
*/
16-
project(group: "org.savantbuild", name: "savant-core", version: "2.0.0-RC.7", licenses: ["Apache-2.0"]) {
16+
project(group: "org.savantbuild", name: "savant-core", version: "2.0.0-RC.8", licenses: ["Apache-2.0"]) {
1717
workflow {
1818
fetch {
1919
cache()
@@ -30,18 +30,18 @@ project(group: "org.savantbuild", name: "savant-core", version: "2.0.0-RC.7", li
3030

3131
dependencies {
3232
group(name: "compile") {
33-
dependency(id: "org.apache.groovy:groovy:4.0.5:jar")
34-
dependency(id: "org.apache.groovy:groovy-datetime:4.0.5:jar")
35-
dependency(id: "org.apache.groovy:groovy-groovydoc:4.0.5:jar")
36-
dependency(id: "org.apache.groovy:groovy-jmx:4.0.5:jar")
37-
dependency(id: "org.apache.groovy:groovy-json:4.0.5:jar")
38-
dependency(id: "org.apache.groovy:groovy-jsr223:4.0.5:jar")
39-
dependency(id: "org.apache.groovy:groovy-macro:4.0.5:jar")
40-
dependency(id: "org.apache.groovy:groovy-nio:4.0.5:jar")
41-
dependency(id: "org.apache.groovy:groovy-sql:4.0.5:jar")
42-
dependency(id: "org.apache.groovy:groovy-templates:4.0.5:jar")
43-
dependency(id: "org.apache.groovy:groovy-xml:4.0.5:jar")
44-
dependency(id: "org.apache.groovy:groovy-yaml:4.0.5:jar")
33+
dependency(id: "org.apache.groovy:groovy:4.0.22:jar")
34+
dependency(id: "org.apache.groovy:groovy-datetime:4.0.22:jar")
35+
dependency(id: "org.apache.groovy:groovy-groovydoc:4.0.22:jar")
36+
dependency(id: "org.apache.groovy:groovy-jmx:4.0.22:jar")
37+
dependency(id: "org.apache.groovy:groovy-json:4.0.22:jar")
38+
dependency(id: "org.apache.groovy:groovy-jsr223:4.0.22:jar")
39+
dependency(id: "org.apache.groovy:groovy-macro:4.0.22:jar")
40+
dependency(id: "org.apache.groovy:groovy-nio:4.0.22:jar")
41+
dependency(id: "org.apache.groovy:groovy-sql:4.0.22:jar")
42+
dependency(id: "org.apache.groovy:groovy-templates:4.0.22:jar")
43+
dependency(id: "org.apache.groovy:groovy-xml:4.0.22:jar")
44+
dependency(id: "org.apache.groovy:groovy-yaml:4.0.22:jar")
4545
dependency(id: "org.savantbuild:savant-dependency-management:2.0.0-RC.7")
4646
dependency(id: "org.savantbuild:savant-utils:2.0.0-RC.7")
4747
dependency(id: "org.savantbuild:savant-version:2.0.0-RC.7")
@@ -61,18 +61,18 @@ project(group: "org.savantbuild", name: "savant-core", version: "2.0.0-RC.7", li
6161
}
6262

6363
// Plugins
64-
dependency = loadPlugin(id: "org.savantbuild.plugin:dependency:2.0.0-RC.6")
64+
dependency = loadPlugin(id: "org.savantbuild.plugin:dependency:2.0.0-RC.7")
6565
file = loadPlugin(id: "org.savantbuild.plugin:file:2.0.0-RC.6")
6666
java = loadPlugin(id: "org.savantbuild.plugin:java:2.0.0-RC.6")
6767
javaTestNG = loadPlugin(id: "org.savantbuild.plugin:java-testng:2.0.0-RC.6")
68-
idea = loadPlugin(id: "org.savantbuild.plugin:idea:2.0.0-RC.6")
68+
idea = loadPlugin(id: "org.savantbuild.plugin:idea:2.0.0-RC.7")
6969
release = loadPlugin(id: "org.savantbuild.plugin:release-git:2.0.0-RC.6")
7070

7171
// Plugin settings
7272
java.settings.javaVersion = "17"
7373
javaTestNG.settings.javaVersion = "17"
7474
idea.settings.moduleMap = [
75-
"org.savantbuild:savant-dependency-management:2.0.0-RC.6" : "savant-dependency-management",
75+
"org.savantbuild:savant-dependency-management:2.0.0-RC.7" : "savant-dependency-management",
7676
"org.savantbuild:savant-utils:2.0.0-RC.6" : "savant-utils",
7777
"org.savantbuild:savant-version:2.0.0-RC.6" : "savant-version"
7878
]

0 commit comments

Comments
 (0)