Polish "Fix detection of snapshot version when configuring repositories"
See gh-21912
This commit is contained in:
@@ -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" }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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" }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user