From e06d2a9c5747e52e5ccc606824a01b4cc893862b Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 19 Sep 2019 13:27:49 +0200 Subject: [PATCH] Stop using libs-release This commit makes sure we narrow down dependencies of the Spring Framework to only Maven central. Optional dependencies that are not available on Maven Central are now served from a more specific repository (`libs-spring-framework-build`). Closes gh-23124 --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 1868e15bed..a3b0a3a249 100644 --- a/build.gradle +++ b/build.gradle @@ -295,7 +295,7 @@ configure(allprojects) { project -> } repositories { mavenCentral() - maven { url "https://repo.spring.io/libs-release" } + maven { url "https://repo.spring.io/libs-spring-framework-build" } maven { url "https://repo.spring.io/milestone" } // Reactor maven { url "https://repo.spring.io/snapshot" } // Reactor }