Skip to content

Commit

Permalink
fix(deps): update dependency org.junit:junit-bom to v5.12.0 (#2200)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
renovate[bot] and laurit authored Feb 25, 2025
1 parent 5ba87ca commit f61f3e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion buildSrc/src/main/kotlin/splunk.java-conventions.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ dependencies {
add("testImplementation", "org.mockito:mockito-junit-jupiter")
add("testImplementation", "org.junit.jupiter:junit-jupiter-api")
add("testImplementation", "org.junit.jupiter:junit-jupiter-params")
add("testRuntimeOnly", "org.junit.jupiter:junit-jupiter-engine")
add("testImplementation", "org.junit.jupiter:junit-jupiter-engine")
add("testRuntimeOnly", "org.junit.platform:junit-platform-launcher")
add("testRuntimeOnly", "org.slf4j:slf4j-api")
}

Expand Down
2 changes: 1 addition & 1 deletion dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies {
api(enforcedPlatform("io.grpc:grpc-bom:1.70.0"))
api(enforcedPlatform("io.opentelemetry:opentelemetry-bom-alpha:$otelAlphaVersion"))
api(enforcedPlatform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:$otelInstrumentationAlphaVersion"))
api(enforcedPlatform("org.junit:junit-bom:5.11.4"))
api(enforcedPlatform("org.junit:junit-bom:5.12.0"))
api(enforcedPlatform("org.testcontainers:testcontainers-bom:1.20.5"))

constraints {
Expand Down
1 change: 1 addition & 0 deletions testing/jmh-benchmarks/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ dependencies {
implementation(project(":profiler"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}

tasks.named<Test>("test") {
Expand Down

0 comments on commit f61f3e7

Please sign in to comment.