Skip to content

Commit 93474fb

Browse files
fix: pin junit-platform-launcher to JUnit 6.0.3
In JUnit 6, Platform and Jupiter versions are aligned (both 6.0.3), unlike JUnit 5 where Platform was 1.x and Jupiter was 5.x. Explicitly pins junit-platform-launcher to avoid unintended version resolution. Co-authored-by: Jon Haddad <rustyrazorblade@users.noreply.github.com>
1 parent c3f7634 commit 93474fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jackson-datatype-jsr310 = { module = "com.fasterxml.jackson.datatype:jackson-dat
9393

9494
# Testing
9595
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter-engine", version.ref = "jupiter" }
96-
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher" }
96+
junit-platform-launcher = { module = "org.junit.platform:junit-platform-launcher", version.ref = "jupiter" }
9797
assertj-core = { module = "org.assertj:assertj-core", version.ref = "assertj" }
9898
mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version.ref = "mockito-kotlin" }
9999
testcontainers-core = { module = "org.testcontainers:testcontainers", version.ref = "testcontainers" }

0 commit comments

Comments
 (0)