From c86ea72b5e9e18d40b348e553c75aa707bda36fc Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 19 Jan 2022 15:17:44 +0100 Subject: [PATCH] Temporarily add SNAPSHOT plugin repository This is required as otherwise they're deactivated during the staging of a release. We should reconsider our dependency on Spring Boot SNAPSHOTs in our samples. --- settings.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings.gradle b/settings.gradle index c51c0ce2..42c0d56f 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,8 +5,8 @@ pluginManagement { maven { url 'https://repo.spring.io/release' } - if (version.endsWith('-SNAPSHOT')) { - maven { url "https://repo.spring.io/snapshot" } + maven { + url "https://repo.spring.io/snapshot" } } resolutionStrategy {