Skip to content

Commit f7f6107

Browse files
chore(deps): update junit5 to v5.12.0 (#388)
Co-authored-by: iProdigy <[email protected]>
1 parent fe0eba2 commit f7f6107

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,10 @@ subprojects {
5050
testCompileOnly("org.jetbrains:annotations:26.0.2")
5151

5252
// tests
53-
testImplementation(platform("org.junit:junit-bom:5.11.4"))
53+
testImplementation(platform("org.junit:junit-bom:5.12.0"))
5454
testImplementation(group = "org.junit.jupiter", name = "junit-jupiter")
5555
testRuntimeOnly(group = "org.junit.jupiter", name = "junit-jupiter-engine")
56+
testRuntimeOnly(group = "org.junit.platform", name = "junit-platform-launcher")
5657

5758
// logging and tests
5859
api(group = "org.slf4j", name = "slf4j-api", version = "2.0.16")

core/build.gradle.kts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ plugins {
55
dependencies {
66
api(project(":cache-api"))
77

8-
testFixturesImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
9-
testFixturesRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.11.4")
8+
testFixturesImplementation(platform("org.junit:junit-bom:5.12.0"))
9+
testFixturesImplementation("org.junit.jupiter:junit-jupiter")
10+
testFixturesRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
1011
testFixturesImplementation("org.awaitility:awaitility:4.3.0")
1112
}
1213

0 commit comments

Comments
 (0)