Update to M4 switch to groovy-3 variant, Update gradle to 6.7.1

This commit is contained in:
Leonard Brünings
2020-11-29 16:53:22 +01:00
parent 744bf74767
commit c8101569d9
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -15,8 +15,8 @@ repositories {
dependencies {
// mandatory dependencies for using Spock
compile "org.codehaus.groovy:groovy:2.5.13"
testCompile platform("org.spockframework:spock-bom:2.0-M3-groovy-2.5")
compile "org.codehaus.groovy:groovy:3.0.6"
testCompile platform("org.spockframework:spock-bom:2.0-M4-groovy-3.0")
testCompile "org.spockframework:spock-core"
testCompile "org.spockframework:spock-junit4" // you can remove this if your code does not rely on old JUnit 4 rules
@@ -27,7 +27,7 @@ dependencies {
// dependencies used by examples in this project
testRuntime "com.h2database:h2:1.4.197"
compile "org.codehaus.groovy:groovy-sql:2.5.13"
compile "org.codehaus.groovy:groovy-sql:3.0.6"
}
// the remaining configuration is specific to this project, and is not required for using Spock