update 3rd party libs

This commit is contained in:
2019-12-22 19:09:37 +01:00
parent 98bdb35c40
commit 955b410ba3

View File

@@ -8,13 +8,13 @@ buildscript {
} }
dependencies { dependencies {
// run with gradle --no-daemon clean jmh // run with gradle --no-daemon clean jmh
classpath "me.champeau.gradle:jmh-gradle-plugin:0.5.0-rc-2" classpath "me.champeau.gradle:jmh-gradle-plugin:0.5.0"
} }
} }
plugins { plugins {
// usage: gradle dependencyUpdates -Drevision=release // usage: gradle dependencyUpdates -Drevision=release
id "com.github.ben-manes.versions" version "0.24.0" id "com.github.ben-manes.versions" version "0.27.0"
} }
apply plugin: 'java' apply plugin: 'java'
apply plugin: 'eclipse' apply plugin: 'eclipse'
@@ -66,9 +66,9 @@ subprojects {
// dependencies that all sub-projects have // dependencies that all sub-projects have
dependencies { dependencies {
testCompile 'org.junit.jupiter:junit-jupiter-api:5.5.1' testCompile 'org.junit.jupiter:junit-jupiter-api:5.5.2'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.5.1' testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.5.2'
testRuntime 'org.junit.platform:junit-platform-launcher:1.5.1' // needed by eclipse testRuntime 'org.junit.platform:junit-platform-launcher:1.5.2' // needed by eclipse
} }
test { test {
@@ -83,6 +83,6 @@ subprojects {
} }
} }
wrapper() { wrapper {
gradleVersion = '5.6.2' gradleVersion = '6.0.1'
} }