Skip to content

Commit

Permalink
Resolve JUnit version conflicts
Browse files Browse the repository at this point in the history
Closes gh-6
  • Loading branch information
rainboyan committed Oct 12, 2024
1 parent ceefb3d commit 7b345bc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,15 @@ subprojects { project->
documentation "info.picocli:picocli:4.6.3"
documentation "com.github.javaparser:javaparser-core:$javaParserCoreVersion"

testImplementation "org.spockframework:spock-core:$spockVersion"
testImplementation "org.spockframework:spock-core:$spockVersion", {
exclude group: "org.junit.platform", module: "junit-platform-engine"
}
testImplementation "net.bytebuddy:byte-buddy:$bytebuddyVersion"
testImplementation "org.objenesis:objenesis:$objenesisVersion"
testImplementation "org.apache.groovy:groovy-test-junit5:${groovyVersion}"
testImplementation "org.apache.groovy:groovy-test-junit5:${groovyVersion}", {
exclude group: "org.junit.platform", module: "junit-platform-launcher"
exclude group: "org.junit.jupiter", module: "junit-jupiter-engine"
}
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitJupiterVersion"
testImplementation "org.junit.platform:junit-platform-runner:$junitJupiterPlatformVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitJupiterVersion"
Expand Down

0 comments on commit 7b345bc

Please sign in to comment.