Skip to content

Commit f61f3e7

Browse files
fix(deps): update dependency org.junit:junit-bom to v5.12.0 (#2200)
* fix(deps): update dependency org.junit:junit-bom to v5.12.0 * fix dependencies * fix dependencies --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lauri Tulmin <[email protected]>
1 parent 5ba87ca commit f61f3e7

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ dependencies {
3535
add("testImplementation", "org.mockito:mockito-junit-jupiter")
3636
add("testImplementation", "org.junit.jupiter:junit-jupiter-api")
3737
add("testImplementation", "org.junit.jupiter:junit-jupiter-params")
38-
add("testRuntimeOnly", "org.junit.jupiter:junit-jupiter-engine")
38+
add("testImplementation", "org.junit.jupiter:junit-jupiter-engine")
39+
add("testRuntimeOnly", "org.junit.platform:junit-platform-launcher")
3940
add("testRuntimeOnly", "org.slf4j:slf4j-api")
4041
}
4142

dependencyManagement/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
api(enforcedPlatform("io.grpc:grpc-bom:1.70.0"))
3535
api(enforcedPlatform("io.opentelemetry:opentelemetry-bom-alpha:$otelAlphaVersion"))
3636
api(enforcedPlatform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:$otelInstrumentationAlphaVersion"))
37-
api(enforcedPlatform("org.junit:junit-bom:5.11.4"))
37+
api(enforcedPlatform("org.junit:junit-bom:5.12.0"))
3838
api(enforcedPlatform("org.testcontainers:testcontainers-bom:1.20.5"))
3939

4040
constraints {

testing/jmh-benchmarks/build.gradle.kts

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ dependencies {
1111
implementation(project(":profiler"))
1212
testImplementation("org.junit.jupiter:junit-jupiter-api")
1313
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
14+
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
1415
}
1516

1617
tasks.named<Test>("test") {

0 commit comments

Comments
 (0)