Skip to content

Commit

Permalink
Fix spring io repository usage (#1678)
Browse files Browse the repository at this point in the history
- spring.io/plugin-release has been deprecated and need to be replaced with
spring.io/plugin-release-local

Fixes #1669
  • Loading branch information
breskeby committed Jun 1, 2021
1 parent 1ae0763 commit 6ce819a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class BaseBuildPlugin implements Plugin<Project> {
project.repositories.mavenCentral()
project.repositories.maven { url "https://conjars.org/repo" }
project.repositories.maven { url "https://clojars.org/repo" }
project.repositories.maven { url 'https://repo.spring.io/plugins-release' }
project.repositories.maven { url 'https://repo.spring.io/plugins-release-local' }

// For Elasticsearch snapshots.
project.repositories.maven { url "https://snapshots.elastic.co/maven/" } // default
Expand Down

0 comments on commit 6ce819a

Please sign in to comment.