Move repo.spring.io up in the order

I'm getting very slow times on failures to resolve Boot snapshots
through the gradlePluginPortal (3-4 min build time). Moving it down
after repo.spring.io restores regular build times.
This commit is contained in:
rstoyanchev
2022-03-08 17:21:38 +00:00
parent c9640b6134
commit caa717e358

View File

@@ -1,13 +1,13 @@
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
maven {
url 'https://repo.spring.io/release'
}
maven {
url "https://repo.spring.io/snapshot"
}
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {