diff --git a/build.gradle b/build.gradle index c48fc322015..cbcaca5181c 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,7 @@ allprojects { maven { url "https://repo.spring.io/milestone" } } if (version.endsWith('-SNAPSHOT')) { - maven { url "https://repo.spring.io/libs-snapshot" } + maven { url "https://repo.spring.io/snapshot" } } } diff --git a/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/app/build.gradle b/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/app/build.gradle index 265bc510e15..7ab763fe565 100644 --- a/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/app/build.gradle +++ b/spring-boot-tests/spring-boot-integration-tests/spring-boot-launch-script-tests/app/build.gradle @@ -8,8 +8,8 @@ apply plugin: "io.spring.dependency-management" repositories { maven { url "file:${rootDir}/../int-test-maven-repository"} mavenCentral() - maven { url "https://repo.spring.io/libs-snapshot" } maven { url "https://repo.spring.io/milestone" } + maven { url "https://repo.spring.io/snapshot" } } dependencies {