Remove redundant useJUnitPlatform declarations

See gh-20206
This commit is contained in:
dreis2211 2020-02-16 19:20:43 +01:00 committed by Stephane Nicoll
parent 6fc25a309c
commit a9dabe13bb
2 changed files with 0 additions and 4 deletions

View File

@ -98,7 +98,6 @@ sourceSets {
test { test {
dependsOn syncTestRepository dependsOn syncTestRepository
useJUnitPlatform()
} }
task fullJar(type: Jar) { task fullJar(type: Jar) {

View File

@ -56,6 +56,3 @@ dependencies {
testRuntimeOnly("org.junit.vintage:junit-vintage-engine") testRuntimeOnly("org.junit.vintage:junit-vintage-engine")
} }
test {
useJUnitPlatform()
}