Skip to content

Commit 7bb330a

Browse files
committed
Re-order mavenBom imports
It looks like some of Spring project's bom added after `spring-framework-bom` causes a mess with dependencies: it brings those SF deps which are in the latest `mavenBom` * Move `spring-framework-bom` to the end of the list to be sure that its version comes properly * Do the same for Spring Data - after Spring AMQP and Spring Kafka
1 parent 0f4c941 commit 7bb330a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,6 @@ allprojects {
164164
imports {
165165
mavenBom "com.fasterxml.jackson:jackson-bom:$jacksonVersion"
166166
mavenBom "org.junit:junit-bom:$junitJupiterVersion"
167-
mavenBom "org.springframework:spring-framework-bom:$springVersion"
168-
mavenBom "org.springframework.data:spring-data-bom:$springDataVersion"
169-
mavenBom "org.springframework.amqp:spring-amqp-bom:$springAmqpVersion"
170-
mavenBom "org.springframework.kafka:spring-kafka-bom:$springKafkaVersion"
171-
mavenBom "org.springframework.ws:spring-ws-bom:$springWsVersion"
172167
mavenBom "io.projectreactor:reactor-bom:$reactorVersion"
173168
mavenBom "org.apache.logging.log4j:log4j-bom:$log4jVersion"
174169
mavenBom "org.mockito:mockito-bom:$mockitoVersion"
@@ -179,6 +174,11 @@ allprojects {
179174
mavenBom "org.apache.groovy:groovy-bom:$groovyVersion"
180175
mavenBom "org.springframework.security:spring-security-bom:$springSecurityVersion"
181176
mavenBom "org.jetbrains.kotlinx:kotlinx-coroutines-bom:$kotlinCoroutinesVersion"
177+
mavenBom "org.springframework.amqp:spring-amqp-bom:$springAmqpVersion"
178+
mavenBom "org.springframework.kafka:spring-kafka-bom:$springKafkaVersion"
179+
mavenBom "org.springframework.ws:spring-ws-bom:$springWsVersion"
180+
mavenBom "org.springframework.data:spring-data-bom:$springDataVersion"
181+
mavenBom "org.springframework:spring-framework-bom:$springVersion"
182182
}
183183

184184
}

0 commit comments

Comments
 (0)