Skip to content

Commit

Permalink
Remove repo.spring.io/plugins-release from Gradle
Browse files Browse the repository at this point in the history
The https://repo.spring.io/plugins-release requires an authentication now.
Replace it with a `mavenCentral()`
  • Loading branch information
artembilan committed Jun 22, 2023
1 parent 8a7293c commit 9882ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -3,7 +3,7 @@ buildscript {
ext.isCI = System.getenv('GITHUB_ACTION') || System.getenv('bamboo_buildKey')
repositories {
gradlePluginPortal()
maven { url 'https://repo.spring.io/plugins-release' }
mavenCentral()
if (version.endsWith('SNAPSHOT')) {
maven { url 'https://repo.spring.io/snapshot' }
}
Expand Down

0 comments on commit 9882ce8

Please sign in to comment.