Trying to upgrade build parts

This commit is contained in:
Bruce Eckel 2020-10-05 13:07:22 -06:00
parent bccbbf309c
commit 0b9d0341fe
2 changed files with 8 additions and 6 deletions

View File

@ -6,7 +6,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'me.champeau.gradle:jmh-gradle-plugin:0.3.1' classpath 'me.champeau.gradle:jmh-gradle-plugin:0.3.1'
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0-M2' classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.3'
} }
} }

View File

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