Skip to content

Commit 0b08d0a

Browse files
committed
Change repositories order to use the right Kotlin dependency
A bogus pre-release of Kotlin 1.1.0-beta-17 seems to be in Spring Artifactory cache, this change make Gradle using the right one from Bintray. Using --refresh-dependencies may be needed to pick-up the right one.
1 parent 5203bd1 commit 0b08d0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
buildscript {
22
repositories {
3-
maven { url "https://repo.spring.io/plugins-snapshot" }
43
maven { url "http://dl.bintray.com/kotlin/kotlin-eap-1.1" }
4+
maven { url "https://repo.spring.io/plugins-snapshot" }
55
}
66
dependencies {
77
classpath("org.springframework.build.gradle:propdeps-plugin:0.0.7")
@@ -170,10 +170,10 @@ configure(allprojects) { project ->
170170
}
171171

172172
repositories {
173-
maven { url "https://repo.spring.io/libs-snapshot" }
173+
maven { url "http://dl.bintray.com/kotlin/kotlin-eap-1.1" }
174174
maven { url "https://repo.spring.io/libs-release" }
175175
maven { url "https://repo.spring.io/milestone" }
176-
maven { url "http://dl.bintray.com/kotlin/kotlin-eap-1.1" }
176+
maven { url "https://repo.spring.io/libs-snapshot" }
177177
}
178178

179179
dependencies {

0 commit comments

Comments
 (0)