build: Allow kotlin-compiler downloading from sonatype

This patch allows one to download the kotlin-compiler dependency
not only from the bintray mirror but also from the sonatype original
repo.
This commit is contained in:
Ilya Matveev
2017-04-28 13:40:42 +07:00
committed by ilmat192
parent c9a344f8c7
commit 028cf6c947
3 changed files with 6 additions and 9 deletions
+2 -3
View File
@@ -37,9 +37,8 @@ apply plugin: org.jetbrains.kotlin.NativeInteropPlugin
// (gets applied to this project and all its subprojects)
allprojects {
repositories {
maven {
url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies'
}
maven { url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
}
configurations.all {
+2 -3
View File
@@ -24,9 +24,8 @@ apply plugin: 'com.jfrog.bintray'
// Copied from backend.native
allprojects {
repositories {
maven {
url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies'
}
maven { url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
}
configurations.all {
+2 -3
View File
@@ -33,9 +33,8 @@ buildscript {
// Copied from backend.native project. =====
repositories {
maven {
url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies'
}
maven { url 'http://dl.bintray.com/jetbrains/kotlin-native-dependencies' }
maven { url 'http://oss.sonatype.org/content/repositories/snapshots' }
}
configurations.all {