build: Switch Kotlin compiler downloading to kotlin-dev bintray repo
This patch uses kotlin-dev bintray repo (dl.bintray.com/kotlin/kotlin -dev/org/jetbrains/kotlin/kotlin-compiler/) for Kotlin compiler downloading instead of the sonatype repo and our bintray mirror of it. So there is not need to run ./gradlew update_kotlin_compiler on each compiler update. It also updates kotlin-compiler to 1.1.3-dev-1619
This commit is contained in:
Vendored
+4
-3
@@ -33,10 +33,11 @@ configurations {
|
||||
kotlin_compiler_pom
|
||||
}
|
||||
|
||||
// TODO: Check if we really need the our bintray mirror and delete the uploading code below if we don't.
|
||||
repositories {
|
||||
maven { url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
|
||||
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
|
||||
//maven { url 'http://dl.bintray.com/kotlin/kotlin-dev' }
|
||||
//maven { url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
|
||||
//maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
|
||||
maven { url 'http://dl.bintray.com/kotlin/kotlin-dev' }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
Reference in New Issue
Block a user