From 4b6c9cca7ebd6e1a261d8b5e08876763adcb2af7 Mon Sep 17 00:00:00 2001 From: Rob Winch <362503+rwinch@users.noreply.github.com> Date: Mon, 13 Oct 2025 10:47:51 -0500 Subject: [PATCH] Enable SNAPSHOT builds To use Reactor SNAPSHOTs in gh-18041 we need to enable the snapshot repositories. Issue gh-18041 --- buildSrc/build.gradle | 2 +- settings.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 79ac0a242d..87b5fcd62f 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -12,7 +12,7 @@ java { repositories { gradlePluginPortal() mavenCentral() - maven { url 'https://repo.spring.io/milestone' } + maven { url 'https://repo.spring.io/snapshot' } } sourceSets { diff --git a/settings.gradle b/settings.gradle index 63bb159c51..ded5ff1503 100644 --- a/settings.gradle +++ b/settings.gradle @@ -11,7 +11,7 @@ plugins { dependencyResolutionManagement { repositories { mavenCentral() - maven { url "https://repo.spring.io/milestone" } + maven { url "https://repo.spring.io/snapshot" } } }