Skip to content

Commit 41a8c89

Browse files
committed
gradle version update
1 parent e18f986 commit 41a8c89

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ buildscript {
33
jcenter()
44
mavenLocal()
55
}
6-
dependencies {
7-
classpath("org.junit.platform:junit-platform-gradle-plugin:1.2.0") // junit5
8-
}
96
}
107

118
plugins {
@@ -21,10 +18,13 @@ repositories {
2118
mavenCentral()
2219
}
2320

24-
apply plugin: 'org.junit.platform.gradle.plugin'
21+
22+
23+
test {
24+
useJUnitPlatform()
25+
}
2526

2627
dependencies {
27-
testCompile("org.junit.jupiter:junit-jupiter-api:5.2.0")
28-
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.2.0")
29-
testRuntime("org.junit.vintage:junit-vintage-engine:5.2.0")
28+
testImplementation("org.junit.jupiter:junit-jupiter-api:5.2.0")
29+
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.2.0")
3030
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0.1-all.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)