only:junit5

This commit is contained in:
rusefillc 2023-12-15 11:26:40 -05:00
parent 1390d6c0b9
commit 9644a01d10
3 changed files with 6 additions and 6 deletions

View File

@ -13,6 +13,11 @@ allprojects {
testImplementation global_libs.junit5
testImplementation global_libs.junit5engine
}
test {
// Enable JUnit 5
useJUnitPlatform()
}
}
gradle.projectsEvaluated {

View File

@ -19,9 +19,3 @@ shadowJar {
dependsOn(':enum_to_string:shadowJar')
archiveClassifier = ''
}
test {
// todo: move into global once junit5 migration is over!
// Enable JUnit 5
useJUnitPlatform()
}

View File

@ -3,6 +3,7 @@ ext {
junit : "junit:junit:4.13.2",
junit5 : "org.junit.jupiter:junit-jupiter-api:$junit5Version",
junit5engine : "org.junit.jupiter:junit-jupiter-engine:$junit5Version",
junit5api : "org.junit.jupiter:junit-jupiter-api:$junit5Version",
annotations : "org.jetbrains:annotations:16.0.1",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
antlr : "org.antlr:antlr4:4.13.0",