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.
This commit is contained in:
Brian Clozel
2022-01-19 15:17:44 +01:00
parent 641b0f0506
commit c86ea72b5e

View File

@@ -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 {