From 6927482b9c75a4ce9606cc0be2f54d794e83eb03 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sat, 10 Sep 2022 09:42:04 +0200 Subject: [PATCH] Start building against Reactor 2022.0.0-M6 snapshots See gh-29128 --- build.gradle | 1 + framework-platform/framework-platform.gradle | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b073919aa7..20ae6e1f39 100644 --- a/build.gradle +++ b/build.gradle @@ -26,6 +26,7 @@ configure(allprojects) { project -> mavenCentral() maven { url "https://repo.spring.io/libs-spring-framework-build" } maven { url "https://repo.spring.io/milestone" } // temporarily for context-propagation via Reactor Netty + maven { url "https://repo.spring.io/snapshot" } // reactor } configurations.all { resolutionStrategy { diff --git a/framework-platform/framework-platform.gradle b/framework-platform/framework-platform.gradle index ecf115e7ef..48b9323c4e 100644 --- a/framework-platform/framework-platform.gradle +++ b/framework-platform/framework-platform.gradle @@ -10,7 +10,7 @@ dependencies { api(platform("com.fasterxml.jackson:jackson-bom:2.13.3")) api(platform("io.netty:netty-bom:4.1.80.Final")) api(platform("io.netty:netty5-bom:5.0.0.Alpha3")) - api(platform("io.projectreactor:reactor-bom:2022.0.0-M5")) + api(platform("io.projectreactor:reactor-bom:2022.0.0-SNAPSHOT")) api(platform("io.rsocket:rsocket-bom:1.1.2")) api(platform("org.apache.groovy:groovy-bom:4.0.4")) api(platform("org.apache.logging.log4j:log4j-bom:2.18.0"))