From 89688d61ac5fa7a562d40a46ec0b73d6459253bd Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 29 Jul 2020 18:36:11 +0200 Subject: [PATCH] Revert back to /snapshot repository for SNAPTHOTs See gh-22640 --- build.gradle | 2 +- .../spring-boot-launch-script-tests/app/build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 {