Skip to content

Commit

Permalink
fix(deps): update junit5 monorepo to v5.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot authored and vlsi committed Feb 12, 2024
1 parent 6f741dd commit 8de5beb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ plugins {
}

dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
if (buildParameters.testJdkVersion >= 11) {
// system-stubs 2.0+ requires Java 11+
testImplementation("uk.org.webcompere:system-stubs-jupiter:2.1.5")
} else {
testImplementation("uk.org.webcompere:system-stubs-jupiter:1.2.0") // renovate:ignore
}
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.1")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.2")
testImplementation("org.hamcrest:hamcrest:2.2")
testImplementation("org.hamcrest:hamcrest-junit:2.0.0.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.10.2")
if ((project.findProperty("junit4") ?: "true").toString().toBoolean()) {
// Allow projects to opt-out of junit dependency, so they can be JUnit5-only
testImplementation("junit:junit:4.13.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.10.1")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.10.2")
}
}

Expand Down
2 changes: 1 addition & 1 deletion pgjdbc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ dependencies {
implementation("org.checkerframework:checker-qual:3.42.0")
testImplementation("se.jiderhamn:classloader-leak-test-framework:1.1.2")
testFixturesImplementation("junit:junit:4.13.2")
testFixturesImplementation("org.junit.jupiter:junit-jupiter-api:5.10.1")
testFixturesImplementation("org.junit.jupiter:junit-jupiter-api:5.10.2")
testFixturesImplementation("org.checkerframework:checker-qual:3.42.0")
}

Expand Down

0 comments on commit 8de5beb

Please sign in to comment.