Skip to content

Commit

Permalink
update to groovy 4
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrell authored and gesellix committed Oct 12, 2023
1 parent b0ebf3d commit 3b8a6e5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ updates:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#groups
groovy:
patterns:
- "org.codehaus.groovy:*"
- "org.apache.groovy:*"
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val dependencyVersions = listOf(
"net.bytebuddy:byte-buddy:1.14.9",
"net.bytebuddy:byte-buddy-agent:1.14.9",
"org.apache.commons:commons-compress:1.24.0",
"org.codehaus.groovy:groovy:3.0.19",
"org.apache.groovy:groovy:4.0.15",
"org.jetbrains:annotations:24.0.1",
"org.junit:junit-bom:5.10.0",
)
Expand Down
14 changes: 7 additions & 7 deletions client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ dependencies {
}
}
listOf(
"org.codehaus.groovy:groovy",
"org.codehaus.groovy:groovy-json"
"org.apache.groovy:groovy",
"org.apache.groovy:groovy-json"
).onEach {
implementation(it) {
version {
strictly("[3,)")
prefer("3.0.19")
strictly("[4,)")
prefer("4.0.15")
}
}
}
Expand All @@ -103,8 +103,8 @@ dependencies {
api("de.gesellix:docker-engine:2023-10-03T21-35-00")
api("de.gesellix:docker-compose:2023-09-23T20-42-00")

implementation("org.codehaus.groovy:groovy:3.0.19")
implementation("org.codehaus.groovy:groovy-json:3.0.19")
implementation("org.apache.groovy:groovy:4.0.15")
implementation("org.apache.groovy:groovy-json:4.0.15")

api("com.squareup.moshi:moshi:1.15.0")
implementation("com.google.re2j:re2j:1.7")
Expand All @@ -123,7 +123,7 @@ dependencies {
testImplementation("de.gesellix:testutil:[2023-09-01T01-01-01,)")

testImplementation("org.junit.platform:junit-platform-launcher:1.10.0")
testImplementation("org.spockframework:spock-core:2.3-groovy-3.0")
testImplementation("org.spockframework:spock-core:2.3-groovy-4.0")
testRuntimeOnly("net.bytebuddy:byte-buddy:1.14.9")
testRuntimeOnly("org.objenesis:objenesis:3.3")
testImplementation("io.github.joke:spock-mockable:2.3.0")
Expand Down
12 changes: 6 additions & 6 deletions explore/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,25 +38,25 @@ dependencies {
}
}
listOf(
"org.codehaus.groovy:groovy",
"org.codehaus.groovy:groovy-json"
"org.apache.groovy:groovy",
"org.apache.groovy:groovy-json"
).onEach {
implementation(it) {
version {
strictly("[3,)")
prefer("3.0.19")
strictly("[4,)")
prefer("4.0.15")
}
}
}
}
implementation(project(":client"))
implementation("org.codehaus.groovy:groovy:3.0.19")
implementation("org.apache.groovy:groovy:4.0.15")
testImplementation("org.apache.commons:commons-compress:1.24.0")

implementation("org.slf4j:slf4j-api:2.0.9")
runtimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.11")

testImplementation("org.spockframework:spock-core:2.3-groovy-3.0")
testImplementation("org.spockframework:spock-core:2.3-groovy-4.0")
testRuntimeOnly("net.bytebuddy:byte-buddy:1.14.9")
testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.11")
}
Expand Down
4 changes: 2 additions & 2 deletions integration-test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ dependencies {
}
}
implementation(project(":client"))
testImplementation("org.codehaus.groovy:groovy-json:[3,)")
testImplementation("org.apache.groovy:groovy-json:[4,)")
testImplementation("com.kohlschutter.junixsocket:junixsocket-core:[2.4,)")
testImplementation("com.kohlschutter.junixsocket:junixsocket-common:[2.4,)")

Expand All @@ -87,7 +87,7 @@ dependencies {

testImplementation("de.gesellix:docker-registry:2023-10-03T20-58-00")
testImplementation("de.gesellix:testutil:[2023-09-01T01-01-01,)")
testImplementation("org.spockframework:spock-core:2.3-groovy-3.0")
testImplementation("org.spockframework:spock-core:2.3-groovy-4.0")
testRuntimeOnly("net.bytebuddy:byte-buddy:1.14.9")
testImplementation("org.apache.commons:commons-lang3:3.13.0")
testRuntimeOnly("ch.qos.logback:logback-classic:[1.2,2)!!1.3.8")
Expand Down

0 comments on commit 3b8a6e5

Please sign in to comment.