Skip to content

Commit 86e57b5

Browse files
author
Botond Lovasz
committed
minor: Upgrade JUnit
1 parent 96aaff8 commit 86e57b5

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

gradle/libs.versions.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ azure-identity = "1.18.1"
88
guava = "33.4.8-jre"
99

1010
jgiven = "1.3.1"
11-
jupiter = "5.11.4"
11+
jupiter = "5.14.1"
1212

1313
kotlin-logging = "3.0.5"
1414

@@ -38,6 +38,7 @@ jgiven-junit5 = { module = "com.tngtech.jgiven:jgiven-html5-report", version.ref
3838
jgiven-spring-junit5 = { module = "com.tngtech.jgiven:jgiven-spring-junit5", version.ref = "jgiven" }
3939
jgiven-kotlin = { module = "io.toolisticon.testing:jgiven-kotlin", version = "1.3.1.0" }
4040

41+
junit = { module = "org.junit.jupiter:junit-jupiter", version.ref = "jupiter" }
4142
junit-api = { module = "org.junit.jupiter:junit-jupiter-api", version.ref = "jupiter" }
4243
junit-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "jupiter" }
4344
junit-engine = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "jupiter" }

platform-spring-bom/build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,6 @@ subprojects { p ->
4848

4949
testImplementation project(':platform-spring-test-bom:platform-spring-test-bdd')
5050

51-
// https://stackoverflow.com/a/79650948
52-
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
53-
5451
if (p.plugins.hasPlugin(org.jetbrains.kotlin.gradle.plugin.KotlinPluginWrapper)) {
5552
kapt platform(project(':platform-spring-bom'))
5653
}

platform-spring-test-bom/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ dependencies {
2828

2929
api(libs.assertj.core)
3030

31+
api(libs.junit)
3132
api(libs.junit.api)
3233
api(libs.junit.params)
3334
api(libs.junit.engine)
@@ -37,9 +38,6 @@ subprojects {
3738
dependencies {
3839
// platform-spring-test-bom (and so all libraries from above) goes to the api classpath (implementation)
3940
implementation platform(project(':platform-spring-test-bom'))
40-
41-
// https://stackoverflow.com/a/79650948
42-
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
4341
}
4442
}
4543

0 commit comments

Comments
 (0)