This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git
commit a699a9e86c3660e4a45cf1e52e5e2da0586e413b Author: Paul King <[email protected]> AuthorDate: Wed Dec 4 22:37:54 2024 +1000 minor refactor: remove gradle warning: The automatic loading of test framework implementation dependencies has been deprecated. --- build-logic/src/main/groovy/org.apache.groovy-performance.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build-logic/src/main/groovy/org.apache.groovy-performance.gradle b/build-logic/src/main/groovy/org.apache.groovy-performance.gradle index 9657c3c587..0735992648 100644 --- a/build-logic/src/main/groovy/org.apache.groovy-performance.gradle +++ b/build-logic/src/main/groovy/org.apache.groovy-performance.gradle @@ -44,9 +44,7 @@ repositories { dependencies { jmh project(":") testImplementation project(":") - testRuntimeOnly("org.junit.platform:junit-platform-launcher:${versions.junit5Platform}") { - exclude(group: 'org.apiguardian', module: 'apiguardian-api') - } + testImplementation "junit:junit:${versions.junit}" stats "org.apache.commons:commons-math3:${versions.commonsMath3}" }
