Browse Source

Remove unnecessary repository declarations

They should be covered by `spring.mavenRepositories()`
pull/44134/head
Phillip Webb 11 months ago
parent
commit
f0e777486d
  1. 10
      build.gradle

10
build.gradle

@ -17,16 +17,6 @@ subprojects { @@ -17,16 +17,6 @@ subprojects {
repositories {
mavenCentral()
spring.mavenRepositories()
if (version.contains('-')) {
maven {
url = "https://repo.spring.io/milestone"
}
}
if (version.endsWith('-SNAPSHOT')) {
maven {
url = "https://repo.spring.io/snapshot"
}
}
}
configurations.all {

Loading…
Cancel
Save