Skip to content

Commit 3e2034a

Browse files
committed
fix: JUnit execution, also rolled back to 5.14.0
1 parent ed1c11c commit 3e2034a

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

drain-java-core/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dependencies {
2121
testImplementation(libs.assertj.core)
2222
testImplementation(libs.junit.jupiter.api)
2323
testRuntimeOnly(libs.junit.jupiter.engine)
24+
testRuntimeOnly(libs.junit.platform.launcher)
2425
}
2526

2627
tasks {

drain-java-jackson/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencies {
2323
testImplementation(libs.assertj.core)
2424
testImplementation(libs.junit.jupiter.api)
2525
testRuntimeOnly(libs.junit.jupiter.engine)
26+
testRuntimeOnly(libs.junit.platform.launcher)
2627
}
2728

2829
tasks {

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ guava = "30.1.1-jre"
1616

1717
assertj = "3.27.6"
1818
junit = "5.14.0"
19+
junit-launcher = "1.14.0"
1920

2021
[libraries]
2122

@@ -32,6 +33,7 @@ assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" }
3233

3334
junit-jupiter-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "junit" }
3435
junit-jupiter-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "junit" }
36+
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "junit-launcher" }
3537

3638
[bundles]
3739
jackson = ["jackson-core", "jackson-annotations", "jackson-databind"]

tailer/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ dependencies {
2626
testImplementation(libs.assertj.core)
2727
testImplementation(libs.junit.jupiter.api)
2828
testRuntimeOnly(libs.junit.jupiter.engine)
29+
testRuntimeOnly(libs.junit.platform.launcher)
2930
}
3031

3132
application {

0 commit comments

Comments
 (0)