Reorder Maven BOM imports in dependency-management.gradle.

Move the Spring Framework BOM below the Spring Boot BOM.
This commit is contained in:
John Blum
2021-02-19 00:01:48 -08:00
parent 815da23153
commit 6f8a1a1b32

View File

@@ -1,7 +1,7 @@
dependencyManagement {
imports {
mavenBom "org.springframework:spring-framework-bom:${springVersion}"
mavenBom "org.springframework.boot:spring-boot-dependencies:$springBootVersion"
mavenBom "org.springframework:spring-framework-bom:${springVersion}"
mavenBom "org.springframework.data:spring-data-bom:${springDataBomVersion}"
mavenBom "org.springframework.session:spring-session-bom:${springSessionBomVersion}"
}