Skip to content

Commit 3183458

Browse files
committed
Don't use libs-milestone & libs-snapshot
Both those Spring repos require an authentication. Use regular https://repo.spring.io/milestone and https://repo.spring.io/snapshot instead. The rest of GA deps must be resolved from Maven Central
1 parent 18c38a0 commit 3183458

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ allprojects {
110110

111111
repositories {
112112
mavenCentral()
113-
maven { url 'https://repo.spring.io/libs-milestone' }
113+
maven { url 'https://repo.spring.io/milestone' }
114114
if (version.endsWith('-SNAPSHOT')) {
115-
maven { url 'https://repo.spring.io/libs-snapshot' }
115+
maven { url 'https://repo.spring.io/snapshot' }
116116
// maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
117117
}
118118
// maven { url 'https://repo.spring.io/libs-staging-local' }

0 commit comments

Comments
 (0)