update spring boot

This commit is contained in:
2020-10-31 09:11:32 +01:00
parent 50658b22ee
commit 0fab0c2e5e

View File

@@ -13,7 +13,7 @@ buildscript {
}
dependencies {
// usage: gradlew dependencyUpdates -Drevision=release
// usage: gradlew dependencyUpdates -Drevision=release
classpath 'com.github.ben-manes:gradle-versions-plugin:0.33.0'
}
}
@@ -23,7 +23,7 @@ ext {
javaVersion=14
version_log4j2= '2.13.3' // keep in sync with spring-boot-starter-log4j2
version_spring = '2.3.4.RELEASE'
version_spring = '2.3.5.RELEASE'
version_junit = '5.7.0'
version_junit_platform = '1.7.0'
@@ -59,39 +59,39 @@ ext {
* The shared configuration for all sub-projects:
*/
subprojects {
apply plugin: 'java-library'
apply plugin: 'eclipse'
apply plugin: 'java-library'
apply plugin: 'eclipse'
compileJava.options.encoding = 'UTF-8'
compileJava.options.encoding = 'UTF-8'
// java compatibility version
sourceCompatibility = javaVersion
// java compatibility version
sourceCompatibility = javaVersion
configurations {
tests
}
configurations {
tests
}
// the repositories for external depenencies
repositories {
maven {
url 'https://repo.lucares.de/'
content { includeGroup "org.lucares" }
}
mavenCentral(content: { excludeGroup "org.lucares" })
jcenter{
content { excludeGroup "org.lucares" }
}
}
// the repositories for external depenencies
repositories {
maven {
url 'https://repo.lucares.de/'
content { includeGroup "org.lucares" }
}
mavenCentral(content: { excludeGroup "org.lucares" })
jcenter{
content { excludeGroup "org.lucares" }
}
}
test{
useJUnitPlatform {
test{
useJUnitPlatform {
includeEngines 'junit-jupiter'
excludeEngines 'junit-vintage'
}
}
}
// dependencies that all sub-projects have
dependencies {
// dependencies that all sub-projects have
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-engine:${version_junit}")
testImplementation "org.junit.jupiter:junit-jupiter-params:${version_junit}" // for @ParameterizedTest
testImplementation "org.junit.platform:junit-platform-launcher:${version_junit_platform}" // needed by eclipse
@@ -107,7 +107,7 @@ subprojects {
tasks.eclipseJdt.dependsOn eclipseSettings
tasks.cleanEclipseJdt.dependsOn cleanEclipseSettings
eclipse {
eclipse {
classpath {
file {
whenMerged {