Skip to content

Commit 465a91b

Browse files
committed
Clean repositories up in the Gradle build script
1 parent 82fc24a commit 465a91b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
buildscript {
22
ext.kotlinVersion = '1.3.61'
33
repositories {
4+
mavenCentral()
45
maven { url 'https://repo.spring.io/plugins-release' }
56
}
67
dependencies {
@@ -97,8 +98,9 @@ allprojects {
9798
}
9899

99100
repositories {
101+
mavenCentral()
100102
maven { url 'https://repo.spring.io/libs-milestone' }
101-
if (version.endsWith('BUILD-SNAPSHOT')) {
103+
if (version.endsWith('SNAPSHOT')) {
102104
maven { url 'https://repo.spring.io/libs-snapshot' }
103105
}
104106
// maven { url 'https://repository.apache.org/content/groups/staging/' }

0 commit comments

Comments
 (0)