File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
build-logic/jvm/src/main/kotlin Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ plugins {
66dependencies {
77 testImplementation(" org.junit.jupiter:junit-jupiter-api" )
88 testImplementation(" org.junit.jupiter:junit-jupiter-params" )
9+ testRuntimeOnly(" org.junit.platform:junit-platform-launcher" ) {
10+ because(" It is needed for junit in runtime, see https://github.com/junit-team/junit5/issues/4335#issuecomment-2676780444" )
11+ }
912 testImplementation(" org.assertj:assertj-core" )
1013}
1114
Original file line number Diff line number Diff line change @@ -45,8 +45,7 @@ dependencies {
4545 implementation(" com.google.oauth-client:google-oauth-client-java6" )
4646
4747 testImplementation(project(" :sigstore-testkit" ))
48- testImplementation(platform(" org.junit:junit-bom:5.11.4" ))
49- testImplementation(" org.junit.jupiter:junit-jupiter" )
48+ testImplementation(platform(" org.junit:junit-bom:5.12.0" ))
5049
5150 testImplementation(platform(" org.mockito:mockito-bom:5.14.2" ))
5251 testImplementation(" org.mockito:mockito-core" )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies {
1111
1212 // This is different from typical "testImplementation" dependencies, because
1313 // testkit exposes junit5 dependencies in its API (e.g. annotations)
14- api(platform(" org.junit:junit-bom:5.11.4 " ))
14+ api(platform(" org.junit:junit-bom:5.12.0 " ))
1515 api(" org.junit.jupiter:junit-jupiter-api" )
1616 api(" org.junit.jupiter:junit-jupiter-params" )
1717 implementation(" org.junit.jupiter:junit-jupiter" )
You can’t perform that action at this time.
0 commit comments