Skip to content

Commit

Permalink
Update to Groovy 4.0.0-beta-1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcphilipp committed Sep 14, 2021
1 parent 6e2eebe commit a295157
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Expand Up @@ -21,7 +21,7 @@ bartholdy = { module = "de.sormuras:bartholdy", version = "0.2.3" }
bnd = { module = "biz.aQute.bnd:biz.aQute.bndlib", version = "5.3.0" }
classgraph = { module = "io.github.classgraph:classgraph", version = "4.8.106" }
commons-io = { module = "commons-io:commons-io", version = "2.9.0" }
groovy3 = { module = "org.codehaus.groovy:groovy", version = "3.0.8" }
groovy4 = { module = "org.apache.groovy:groovy", version = "4.0.0-beta-1" }
groovy2-bom = { module = "org.codehaus.groovy:groovy-bom", version = "2.5.14" }
hamcrest = { module = "org.hamcrest:hamcrest", version = "2.2" }
jfrunit = { module = "org.moditect.jfrunit:jfrunit", version = "1.0.0.Alpha1" }
Expand Down
2 changes: 1 addition & 1 deletion junit-jupiter-engine/junit-jupiter-engine.gradle.kts
Expand Up @@ -23,7 +23,7 @@ dependencies {
testImplementation(kotlin("stdlib"))
testImplementation(libs.junit4)
testImplementation(libs.kotlinx.coroutines)
testImplementation(libs.groovy3)
testImplementation(libs.groovy4)
}

tasks {
Expand Down
2 changes: 1 addition & 1 deletion platform-tests/platform-tests.gradle.kts
Expand Up @@ -31,7 +31,7 @@ dependencies {

// --- Test run-time dependencies ---------------------------------------------
testRuntimeOnly(projects.junitVintageEngine)
testRuntimeOnly(libs.groovy3) {
testRuntimeOnly(libs.groovy4) {
because("`ReflectionUtilsTests.findNestedClassesWithInvalidNestedClassFile` needs it")
}

Expand Down
Expand Up @@ -26,7 +26,7 @@ dependencies {
testImplementation(libs.apiguardian) {
because("we validate that public classes are annotated")
}
testImplementation(libs.groovy3) {
testImplementation(libs.groovy4) {
because("it provides convenience methods to handle process output")
}
testImplementation(libs.bnd) {
Expand Down

0 comments on commit a295157

Please sign in to comment.