We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ccd867 commit a6c2145Copy full SHA for a6c2145
buildSrc/src/main/kotlin/framefork.java.gradle.kts
@@ -41,3 +41,14 @@ tasks.withType<Javadoc> {
41
tasks.named("test") {
42
outputs.upToDateWhen { false }
43
}
44
+
45
+configurations.all {
46
+ resolutionStrategy.dependencySubstitution {
47
+ substitute(module("junit:junit"))
48
+ .using(module("io.quarkus:quarkus-junit4-mock:3.0.0.Final"))
49
+ .because(
50
+ "We don't want JUnit 4; but is an unneeded transitive of testcontainers. " +
51
+ "See https://github.com/testcontainers/testcontainers-java/issues/970"
52
+ )
53
+ }
54
+}
0 commit comments