Polish "Fix detection of snapshot version when configuring repositories"

See gh-21912
This commit is contained in:
Andy Wilkinson 2020-06-15 09:19:09 +01:00
parent 20f05f4d82
commit 2990b69693
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ allprojects {
if (!version.endsWith('RELEASE')) {
maven { url "https://repo.spring.io/milestone" }
}
if (version.endsWith('SNAPSHOT')) {
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
}

View File

@ -5,7 +5,7 @@ pluginManagement {
maven {
url 'https://repo.spring.io/plugins-release'
}
if (version.endsWith('SNAPSHOT')) {
if (version.endsWith('-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
}