Skip to content

Commit fa878a4

Browse files
committed
update junit 5.0
1 parent 857f461 commit fa878a4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ buildscript {
55
dependencies {
66
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.4.0.RELEASE")
77
classpath("io.spring.gradle:dependency-management-plugin:0.5.4.RELEASE")
8+
classpath 'org.junit.platform:junit-platform-gradle-plugin:1.0.0'
89
}
910
}
1011

@@ -13,6 +14,7 @@ apply plugin: 'eclipse'
1314
apply plugin: 'idea'
1415
apply plugin: 'spring-boot'
1516
apply plugin: 'io.spring.dependency-management'
17+
apply plugin: 'org.junit.platform.gradle.plugin'
1618

1719
jar {
1820
baseName = 'scorekeep-api'
@@ -31,8 +33,9 @@ dependencies {
3133
testCompile("org.springframework.boot:spring-boot-starter-test")
3234
compile("com.amazonaws:aws-java-sdk-dynamodb")
3335
compile("com.amazonaws:aws-java-sdk-sns")
34-
testCompile("junit:junit:4.11")
3536
compile("com.fasterxml.jackson.core:jackson-databind:2.8.4")
37+
testCompile("org.junit.jupiter:junit-jupiter-api:5.0.0")
38+
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.0.0")
3639
}
3740

3841
dependencyManagement {

0 commit comments

Comments
 (0)