add gradle-versions plugin and update junit to 5.3.1

This commit is contained in:
2018-09-13 19:05:35 +02:00
parent 81fb565b1d
commit 9bf4abe3ec

View File

@@ -1,3 +1,7 @@
plugins {
id "com.github.ben-manes.versions" version "0.20.0"
}
apply plugin: 'java'
apply plugin: 'eclipse'
@@ -47,9 +51,9 @@ subprojects {
// dependencies that all sub-projects have
dependencies {
testCompile 'org.junit.jupiter:junit-jupiter-api:5.2.0'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.2.0'
testRuntime 'org.junit.platform:junit-platform-launcher:1.2.0' // needed by eclipse
testCompile 'org.junit.jupiter:junit-jupiter-api:5.3.1'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
testRuntime 'org.junit.platform:junit-platform-launcher:1.3.1' // needed by eclipse
}
test {