From 9bf4abe3eced11d5953ca7560aa58e30ae1b888a Mon Sep 17 00:00:00 2001 From: Andreas Huber Date: Thu, 13 Sep 2018 19:05:35 +0200 Subject: [PATCH] add gradle-versions plugin and update junit to 5.3.1 --- build.gradle | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index aa9c011..86835a9 100644 --- a/build.gradle +++ b/build.gradle @@ -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 {