Remove bintray repositories from kotlin-native build

This commit is contained in:
Svyatoslav Scherbina
2021-03-03 09:38:45 +00:00
committed by Space
parent 95584f90c3
commit 9f77c68f17
3 changed files with 0 additions and 4 deletions
@@ -43,7 +43,6 @@ repositories {
maven(buildKotlinCompilerRepo)
maven("https://cache-redirector.jetbrains.com/maven-central")
mavenCentral()
maven("https://kotlin.bintray.com/kotlinx")
maven("https://cache-redirector.jetbrains.com/jcenter")
jcenter()
}
-2
View File
@@ -34,12 +34,10 @@ buildscript {
repositories {
if (UtilsKt.getCacheRedirectorEnabled(project)) {
maven { url "https://cache-redirector.jetbrains.com/dl.kotlin.bintray.com/kotlinx" }
maven { url "https://cache-redirector.jetbrains.com/maven-central" }
maven { url "https://cache-redirector.jetbrains.com/jcenter" }
}
else {
maven { url "https://kotlin.bintray.com/kotlinx" }
mavenCentral()
jcenter()
}
-1
View File
@@ -15,7 +15,6 @@ buildscript {
maven {
url project.bootstrapKotlinRepo
}
maven { url UtilsKt.redirectIfEnabled(project, "https://kotlin.bintray.com/kotlinx") }
}
}
// These properties are used by the 'konan' plugin, thus we set them before applying it.