Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0b9d034

Browse files
committed
Trying to upgrade build parts
1 parent bccbbf3 commit 0b9d034

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77
dependencies {
88
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'
1010
}
1111
}
1212

@@ -21,4 +21,4 @@ subprojects {
2121
apply plugin: 'com.mindviewinc.tagging'
2222
}
2323

24-
apply from: 'gradle/subprojects.gradle'
24+
apply from: 'gradle/subprojects.gradle'

gradle/junit-jupiter.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@ import org.apache.tools.ant.util.TeeOutputStream
33
apply plugin: 'org.junit.platform.gradle.plugin'
44

55
ext {
6-
junitJupiterVersion = '5.0.0-M2'
6+
junitJupiterVersion = '5.3.1'
77
}
88

99
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}'
1214
}
1315

1416
junitPlatform {
15-
platformVersion '1.0.0-M2'
17+
platformVersion '1.0.3'
1618
includeClassNamePattern '.*'
1719
}
1820

0 commit comments

Comments
 (0)