Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion benchmark-overhead/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
implementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))

testImplementation(platform("org.testcontainers:testcontainers-bom:2.0.1"))
testImplementation("org.testcontainers:testcontainers:2.0.1")
Expand Down
2 changes: 1 addition & 1 deletion conventions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies {
implementation("net.ltgt.gradle:gradle-nullaway-plugin:2.3.0")
implementation("me.champeau.gradle:japicmp-gradle-plugin:0.4.6")

testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testImplementation("org.assertj:assertj-core:3.27.6")
Expand Down
2 changes: 1 addition & 1 deletion dependencyManagement/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ val CORE_DEPENDENCIES = listOf(
// There are dependencies included here that appear to have no usages, but are maintained at
// this top level to help consistently satisfy large numbers of transitive dependencies.
val DEPENDENCIES = listOf(
"org.junit.jupiter:junit-jupiter-api:5.14.0",
"org.junit.jupiter:junit-jupiter-api:5.14.1",

"io.r2dbc:r2dbc-proxy:1.1.6.RELEASE",
"ch.qos.logback:logback-classic:1.3.16", // 1.4+ requires Java 11+
Expand Down
2 changes: 1 addition & 1 deletion examples/distro/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ subprojects {

testImplementation("org.mockito:mockito-core:5.20.0")

testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
2 changes: 1 addition & 1 deletion examples/extension/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ dependencies {
testImplementation("io.opentelemetry:opentelemetry-api")
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.8.0-alpha")

testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugins/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies {

testImplementation("org.assertj:assertj-core:3.27.6")

testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.0"))
testImplementation(enforcedPlatform("org.junit:junit-bom:5.14.1"))
testImplementation("org.junit.jupiter:junit-jupiter-api")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
Expand Down
Loading