Skip to content

Commit

Permalink
Merge pull request spring-projects#17736 from dsyer
Browse files Browse the repository at this point in the history
* pr/17736:
  Harmonize settings.gradle documentation in Gradle getting started guide
  Add missing repositories to snapshot configuration

Closes spring-projectsgh-17736
  • Loading branch information
snicoll committed Jul 31, 2019
2 parents f9e809b + 0c56079 commit 340a205
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
@@ -1,8 +1,7 @@
pluginManagement {
repositories {
maven {
url 'https://repo.spring.io/libs-milestone'
}
maven { url 'https://repo.spring.io/milestone' }
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
Expand Down
@@ -1,8 +1,7 @@
pluginManagement {
repositories {
maven {
url = uri("https://repo.spring.io/libs-milestone")
}
maven { url = uri("https://repo.spring.io/milestone") }
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
Expand Down
@@ -1,8 +1,8 @@
pluginManagement {
repositories {
maven {
url 'https://repo.spring.io/libs-snapshot'
}
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
Expand Down
@@ -1,8 +1,8 @@
pluginManagement {
repositories {
maven {
url = uri("https://repo.spring.io/libs-snapshot")
}
maven { url = uri("https://repo.spring.io/milestone") }
maven { url = uri("https://repo.spring.io/snapshot") }
gradlePluginPortal()
}
resolutionStrategy {
eachPlugin {
Expand Down

0 comments on commit 340a205

Please sign in to comment.