From 2fa6d4c3975511b14a75ad3700e90d0ebd482d29 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Fri, 9 Feb 2024 10:10:45 -0500 Subject: [PATCH] Rearrange boms order for proper deps resolution --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 8e5bc895..2f88bf4b 100644 --- a/build.gradle +++ b/build.gradle @@ -101,11 +101,11 @@ allprojects { imports { mavenBom "com.fasterxml.jackson:jackson-bom:$jacksonBomVersion" mavenBom "org.junit:junit-bom:$junitJupiterVersion" - mavenBom "org.springframework:spring-framework-bom:$springVersion" - mavenBom "io.projectreactor:reactor-bom:$reactorVersion" - mavenBom "org.springframework.data:spring-data-bom:$springDataVersion" mavenBom "io.micrometer:micrometer-bom:$micrometerVersion" mavenBom "io.micrometer:micrometer-tracing-bom:$micrometerTracingVersion" + mavenBom "io.projectreactor:reactor-bom:$reactorVersion" + mavenBom "org.springframework.data:spring-data-bom:$springDataVersion" + mavenBom "org.springframework:spring-framework-bom:$springVersion" } }