Prevent mockk from transitively pulling in JUnit 4

This commit is contained in:
Sam Brannen
2026-04-08 13:48:22 +02:00
parent d7ddfe8d2e
commit 18b8f871aa
+3 -1
View File
@@ -61,7 +61,9 @@ configure([rootProject] + javaProjects) { project ->
testImplementation("org.junit.platform:junit-platform-suite")
testImplementation("org.mockito:mockito-core")
testImplementation("org.mockito:mockito-junit-jupiter")
testImplementation("io.mockk:mockk")
testImplementation("io.mockk:mockk") {
exclude group: 'junit', module: 'junit'
}
testImplementation("org.assertj:assertj-core")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testRuntimeOnly("org.apache.logging.log4j:log4j-core")