update dependencies

This commit is contained in:
2020-11-05 17:55:55 +01:00
parent 3f4b5b409a
commit 5b5e948293
2 changed files with 6 additions and 6 deletions

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" classpath "me.champeau.gradle:jmh-gradle-plugin:0.5.2"
} }
} }
plugins { plugins {
// usage: gradle dependencyUpdates -Drevision=release // usage: gradle dependencyUpdates -Drevision=release
id "com.github.ben-manes.versions" version "0.28.0" id "com.github.ben-manes.versions" version "0.34.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.2' testCompile 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.5.2' testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
testRuntime 'org.junit.platform:junit-platform-launcher:1.5.2' // needed by eclipse testRuntime 'org.junit.platform:junit-platform-launcher:1.7.0' // needed by eclipse
} }
test { test {

View File

@@ -4,6 +4,6 @@ group='org.lucares'
version = '0.1.'+new SimpleDateFormat("YYYYMMddHHmmss").format(new Date()); version = '0.1.'+new SimpleDateFormat("YYYYMMddHHmmss").format(new Date());
dependencies { dependencies {
jmh 'org.eclipse.collections:eclipse-collections:10.1.0' jmh 'org.eclipse.collections:eclipse-collections:10.2.0'
} }