We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3477689 commit fffa463Copy full SHA for fffa463
1 file changed
build.gradle
@@ -21,6 +21,7 @@ ext {
21
jmhLibVersion = "1.21"
22
guavaVersion = "33.5.0-jre"
23
jupiterVersion = "5.11.3"
24
+ jupiterLauncherVersion = "1.11.3"
25
}
26
27
def releaseTag = System.getenv("BUILD_TAG")
@@ -50,6 +51,9 @@ dependencies {
50
51
52
testImplementation "org.junit.jupiter:junit-jupiter:$jupiterVersion"
53
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:$jupiterVersion"
54
+
55
+ // The missing piece – required by Gradle 9+
56
+ testRuntimeOnly "org.junit.platform:junit-platform-launcher:$jupiterLauncherVersion" // match your JUnit version family
57
58
59
java {
0 commit comments