From 0b4989650bf8468d8866ba524eb6efd223643484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Basl=C3=A9?= Date: Wed, 20 Apr 2022 11:51:17 +0200 Subject: [PATCH 1/2] Update Reactor BOM to 2022.0.0-M2 --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index d22d65d4cfea..44b745928362 100644 --- a/build.gradle +++ b/build.gradle @@ -29,7 +29,7 @@ configure(allprojects) { project -> imports { mavenBom "com.fasterxml.jackson:jackson-bom:2.13.1" mavenBom "io.netty:netty-bom:4.1.75.Final" - mavenBom "io.projectreactor:reactor-bom:2020.0.18" + mavenBom "io.projectreactor:reactor-bom:2022.0.0-M2" mavenBom "io.r2dbc:r2dbc-bom:Borca-SR1" mavenBom "io.rsocket:rsocket-bom:1.1.2" mavenBom "org.eclipse.jetty:jetty-bom:11.0.9" @@ -250,6 +250,7 @@ configure(allprojects) { project -> repositories { mavenCentral() maven { url "https://repo.spring.io/libs-spring-framework-build" } + maven { url "https://repo.spring.io/libs-milestone-local"} } } configurations.all { From 0cb781b0443142fff8c59860eabd4c522195e835 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20Basl=C3=A9?= Date: Thu, 21 Apr 2022 16:07:52 +0200 Subject: [PATCH 2/2] fix repo url for milestones --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 44b745928362..4ecd04fb047b 100644 --- a/build.gradle +++ b/build.gradle @@ -250,7 +250,7 @@ configure(allprojects) { project -> repositories { mavenCentral() maven { url "https://repo.spring.io/libs-spring-framework-build" } - maven { url "https://repo.spring.io/libs-milestone-local"} + maven { url "https://repo.spring.io/milestone"} } } configurations.all {