Revert "Trying to upgrade build parts"

This reverts commit 0b9d0341fea1d855915be7c87372e844f264d86e.
This commit is contained in:
Bruce Eckel 2020-10-05 13:08:25 -06:00
parent 0b9d0341fe
commit 2ab352d970
2 changed files with 6 additions and 8 deletions

View File

@ -6,7 +6,7 @@ buildscript {
}
dependencies {
classpath 'me.champeau.gradle:jmh-gradle-plugin:0.3.1'
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.3'
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M2'
}
}
@ -21,4 +21,4 @@ subprojects {
apply plugin: 'com.mindviewinc.tagging'
}
apply from: 'gradle/subprojects.gradle'
apply from: 'gradle/subprojects.gradle'

View File

@ -3,18 +3,16 @@ import org.apache.tools.ant.util.TeeOutputStream
apply plugin: 'org.junit.platform.gradle.plugin'
ext {
junitJupiterVersion = '5.3.1'
junitJupiterVersion = '5.0.0-M2'
}
dependencies {
// testCompile "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
// testRuntime "org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
testImplementation 'org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}'
testCompile "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
testRuntime "org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
}
junitPlatform {
platformVersion '1.0.3'
platformVersion '1.0.0-M2'
includeClassNamePattern '.*'
}