Skip to content

Commit 43899a4

Browse files
committed
Prepare update to Groovy 5.0
1 parent b6c97c7 commit 43899a4

File tree

4 files changed

+4
-11
lines changed

4 files changed

+4
-11
lines changed

.github/renovate.json5

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,6 @@
1111
'org.codehaus.groovy:{/,}**',
1212
],
1313
},
14-
{
15-
matchCurrentValue: '/^4\\./',
16-
allowedVersions: '(,5.0)',
17-
matchPackageNames: [
18-
'org.apache.groovy:{/,}**',
19-
],
20-
},
2114
{
2215
matchCurrentValue: '/^1\\./',
2316
allowedVersions: '/^1\\..*-groovy-2\\.*/',

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ commons-io = { module = "commons-io:commons-io", version = "2.20.0" }
3939
errorProne-core = { module = "com.google.errorprone:error_prone_core", version = "2.41.0" }
4040

4141
fastcsv = { module = "de.siegmar:fastcsv", version = "4.0.0" }
42-
groovy4 = { module = "org.apache.groovy:groovy", version = "4.0.28" }
42+
groovy = { module = "org.apache.groovy:groovy", version = "4.0.28" }
4343
groovy2-bom = { module = "org.codehaus.groovy:groovy-bom", version = "2.5.23" }
4444
hamcrest = { module = "org.hamcrest:hamcrest", version = "3.0" }
4545
jackson-dataformat-yaml = { module = "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml", version.ref = "jackson" }

jupiter-tests/jupiter-tests.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies {
2222
testImplementation(libs.jimfs)
2323
testImplementation(libs.junit4)
2424
testImplementation(libs.kotlinx.coroutines)
25-
testImplementation(libs.groovy4)
25+
testImplementation(libs.groovy)
2626
testImplementation(libs.memoryfilesystem)
2727
testImplementation(testFixtures(projects.junitJupiterApi))
2828
testImplementation(testFixtures(projects.junitJupiterEngine))

platform-tests/platform-tests.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ dependencies {
6969
// Add all projects to the classpath for tests using classpath scanning
7070
testRuntimeOnly(it)
7171
}
72-
testRuntimeOnly(libs.groovy4) {
72+
testRuntimeOnly(libs.groovy) {
7373
because("`ReflectionUtilsTests.findNestedClassesWithInvalidNestedClassFile` needs it")
7474
}
7575
woodstox(libs.woodstox)
@@ -79,7 +79,7 @@ dependencies {
7979
jmh(libs.junit4)
8080

8181
// --- ProcessStarter dependencies --------------------------------------------
82-
processStarter.implementationConfigurationName(libs.groovy4) {
82+
processStarter.implementationConfigurationName(libs.groovy) {
8383
because("it provides convenience methods to handle process output")
8484
}
8585
processStarter.implementationConfigurationName(libs.commons.io) {

0 commit comments

Comments
 (0)