update libraries

This commit is contained in:
2020-09-19 19:00:56 +02:00
parent 3868583866
commit 0b87536d91
2 changed files with 8 additions and 7 deletions

View File

@@ -14,23 +14,23 @@ buildscript {
dependencies { dependencies {
// usage: gradlew dependencyUpdates -Drevision=release // usage: gradlew dependencyUpdates -Drevision=release
classpath 'com.github.ben-manes:gradle-versions-plugin:0.29.0' classpath 'com.github.ben-manes:gradle-versions-plugin:0.33.0'
} }
} }
ext { ext {
javaVersion=12 javaVersion=14
version_log4j2= '2.13.3' // keep in sync with spring-boot-starter-log4j2 version_log4j2= '2.13.3' // keep in sync with spring-boot-starter-log4j2
version_spring = '2.3.2.RELEASE' version_spring = '2.3.4.RELEASE'
version_junit = '5.6.1' version_junit = '5.7.0'
version_junit_platform = '1.6.1' version_junit_platform = '1.7.0'
lib_antlr = "org.antlr:antlr4:4.8-1" lib_antlr = "org.antlr:antlr4:4.8-1"
lib_commons_collections4 = 'org.apache.commons:commons-collections4:4.4' lib_commons_collections4 = 'org.apache.commons:commons-collections4:4.4'
lib_commons_lang3 = 'org.apache.commons:commons-lang3:3.10' lib_commons_lang3 = 'org.apache.commons:commons-lang3:3.11'
lib_jackson_databind = 'com.fasterxml.jackson.core:jackson-databind:2.11.2' lib_jackson_databind = 'com.fasterxml.jackson.core:jackson-databind:2.11.2'
lib_log4j2_core = "org.apache.logging.log4j:log4j-core:${version_log4j2}" lib_log4j2_core = "org.apache.logging.log4j:log4j-core:${version_log4j2}"
@@ -92,7 +92,7 @@ subprojects {
// dependencies that all sub-projects have // dependencies that all sub-projects have
dependencies { dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-engine:${version_junit}" testImplementation("org.junit.jupiter:junit-jupiter-engine:${version_junit}")
testImplementation "org.junit.jupiter:junit-jupiter-params:${version_junit}" // for @ParameterizedTest testImplementation "org.junit.jupiter:junit-jupiter-params:${version_junit}" // for @ParameterizedTest
testImplementation "org.junit.platform:junit-platform-launcher:${version_junit_platform}" // needed by eclipse testImplementation "org.junit.platform:junit-platform-launcher:${version_junit_platform}" // needed by eclipse
} }

View File

@@ -26,6 +26,7 @@ dependencies {
testImplementation(lib_spring_boot_test){ testImplementation(lib_spring_boot_test){
exclude module: 'spring-boot-starter-logging' exclude module: 'spring-boot-starter-logging'
exclude module: 'junit' exclude module: 'junit'
exclude module: 'junit-vintage-engine'
} }
} }