Commit 820c671d authored by Andy Wilkinson's avatar Andy Wilkinson

Configure repositories based on the version that is being built

https://repo.spring.io/snapshot should only be available when
building a BUILD-SNAPSHOT. https://repo.spring.io/milestone should
only be available when not building a RELEASE (a BUILD-SNAPSHOT, Mn,
or RCn).

Closes gh-19700
parent 01a0a54f
...@@ -9,8 +9,12 @@ allprojects { ...@@ -9,8 +9,12 @@ allprojects {
repositories { repositories {
mavenCentral() mavenCentral()
maven { url "https://repo.spring.io/milestone" } if (!version.endsWith('RELEASE')) {
maven { url "https://repo.spring.io/snapshot" } maven { url "https://repo.spring.io/milestone" }
}
if (version.endsWith('BUILD-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
} }
configurations.all { configurations.all {
......
...@@ -2,7 +2,9 @@ pluginManagement { ...@@ -2,7 +2,9 @@ pluginManagement {
repositories { repositories {
mavenCentral() mavenCentral()
gradlePluginPortal() gradlePluginPortal()
maven { url "https://repo.spring.io/snapshot" } if (version.endsWith('BUILD-SNAPSHOT')) {
maven { url "https://repo.spring.io/snapshot" }
}
} }
resolutionStrategy { resolutionStrategy {
eachPlugin { eachPlugin {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment