File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -147,11 +147,15 @@ dependencies {
147147
148148testing {
149149 suites.withType(JvmTestSuite ::class ).configureEach {
150- useJUnitJupiter(" 5.13.4 " )
150+ useJUnitJupiter()
151151
152152 dependencies {
153153 implementation(project(project.path))
154154
155+ // this is only needed to establish the version of JUnit we want to use
156+ // since Renovate doesn't currently understand useJUnitJupiter("<version>")
157+ implementation(" org.junit.jupiter:junit-jupiter-api:5.13.4" )
158+
155159 implementation(enforcedPlatform(" org.testcontainers:testcontainers-bom:1.21.3" ))
156160 implementation(enforcedPlatform(" com.google.guava:guava-bom:33.5.0-jre" ))
157161 implementation(enforcedPlatform(" com.linecorp.armeria:armeria-bom:1.33.4" ))
@@ -160,7 +164,6 @@ testing {
160164 compileOnly(" com.google.errorprone:error_prone_annotations" )
161165 compileOnly(" com.google.code.findbugs:jsr305" )
162166
163- implementation(" org.junit.jupiter:junit-jupiter-params" )
164167 implementation(" org.mockito:mockito-core" )
165168 implementation(" org.mockito:mockito-junit-jupiter" )
166169 implementation(" org.assertj:assertj-core" )
You can’t perform that action at this time.
0 commit comments