File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ buildscript {
6
6
}
7
7
dependencies {
8
8
classpath ' me.champeau.gradle:jmh-gradle-plugin:0.3.1'
9
- classpath ' org.junit.platform:junit-platform-gradle-plugin:1.0.0-M2 '
9
+ classpath ' org.junit.platform:junit-platform-gradle-plugin:1.0.3 '
10
10
}
11
11
}
12
12
@@ -21,4 +21,4 @@ subprojects {
21
21
apply plugin : ' com.mindviewinc.tagging'
22
22
}
23
23
24
- apply from : ' gradle/subprojects.gradle'
24
+ apply from : ' gradle/subprojects.gradle'
Original file line number Diff line number Diff line change @@ -3,16 +3,18 @@ import org.apache.tools.ant.util.TeeOutputStream
3
3
apply plugin : ' org.junit.platform.gradle.plugin'
4
4
5
5
ext {
6
- junitJupiterVersion = ' 5.0.0-M2 '
6
+ junitJupiterVersion = ' 5.3.1 '
7
7
}
8
8
9
9
dependencies {
10
- testCompile " org.junit.jupiter:junit-jupiter-api:${ junitJupiterVersion} "
11
- testRuntime " org.junit.jupiter:junit-jupiter-engine:${ junitJupiterVersion} "
10
+ // testCompile "org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}"
11
+ // testRuntime "org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}"
12
+ testImplementation ' org.junit.jupiter:junit-jupiter-api:${junitJupiterVersion}'
13
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}'
12
14
}
13
15
14
16
junitPlatform {
15
- platformVersion ' 1.0.0-M2 '
17
+ platformVersion ' 1.0.3 '
16
18
includeClassNamePattern ' .*'
17
19
}
18
20
You can’t perform that action at this time.
0 commit comments