Skip to content

Commit

Permalink
Remove unused Junit 5 deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Oct 6, 2024
1 parent 501f084 commit 2e06fbf
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,16 @@ dependencies {
testImplementation("org.spockframework:spock-core:2.3-groovy-3.0") {
exclude(group = "org.codehaus.groovy")
}
testImplementation("org.spockframework:spock-junit4:2.3-groovy-3.0")
testImplementation("xmlunit:xmlunit:1.6")
testImplementation("org.apache.commons:commons-lang3:3.17.0")
testImplementation("com.google.guava:guava:33.3.1-jre")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.2")
testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.11.2")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
testImplementation("junit:junit:4.13.2")
}

val isCI = providers.environmentVariable("CI").isPresent

tasks.withType<Test>().configureEach {
useJUnitPlatform()
useJUnit()

maxParallelForks = Runtime.getRuntime().availableProcessors()

Expand Down

0 comments on commit 2e06fbf

Please sign in to comment.