Upgrade to Spring Boot 2.1.9

This commit is contained in:
Marten Deinum
2019-10-23 10:17:48 +02:00
parent ae36ef2b8f
commit d0730babaf
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
plugins { plugins {
id "org.springframework.boot" version "2.1.7.RELEASE" id "org.springframework.boot" version "2.1.9.RELEASE"
} }
dependencies { dependencies {
@@ -17,10 +17,10 @@ dependencies {
exclude group: 'junit' // excluding junit 4 exclude group: 'junit' // excluding junit 4
} }
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.1' testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.1'
testImplementation 'org.junit.platform:junit-platform-launcher:1.4.2'
testImplementation 'org.mockito:mockito-junit-jupiter:2.23.0' testImplementation 'org.mockito:mockito-junit-jupiter:2.23.0'
testImplementation 'com.tngtech.archunit:archunit:0.9.3' testImplementation 'com.tngtech.archunit:archunit:0.9.3'
testImplementation 'de.adesso:junit-insights:1.1.0' testImplementation 'de.adesso:junit-insights:1.1.0'
testImplementation 'org.junit.platform:junit-platform-launcher:1.4.2'
testImplementation 'com.h2database:h2' testImplementation 'com.h2database:h2'
} }

View File

@@ -17,7 +17,7 @@ subprojects {
dependencyManagement { dependencyManagement {
imports { imports {
mavenBom("org.springframework.boot:spring-boot-dependencies:2.1.7.RELEASE") mavenBom("org.springframework.boot:spring-boot-dependencies:2.1.9.RELEASE")
} }
} }