Use HTTPS when downloading dependencies (#2118)
This commit is contained in:
committed by
Nikolay Igotti
parent
6bc47171ca
commit
23b58c38ac
+2
-2
@@ -28,7 +28,7 @@ pluginManagement {
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
maven {
|
||||
url = 'http://dl.bintray.com/kotlin/kotlin-eap'
|
||||
url = 'https://dl.bintray.com/kotlin/kotlin-eap'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -50,7 +50,7 @@ buildscript {
|
||||
url "https://dl.bintray.com/jetbrains/kotlin-native-dependencies"
|
||||
}
|
||||
maven {
|
||||
url "http://dl.bintray.com/kotlin/kotlin-eap"
|
||||
url "https://dl.bintray.com/kotlin/kotlin-eap"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -36,8 +36,8 @@ configurations {
|
||||
|
||||
repositories {
|
||||
ivy {
|
||||
ivyPattern 'http://teamcity.jetbrains.com/guestAuth/repository/download/[module]/[revision]/teamcity-ivy.xml'
|
||||
artifactPattern 'http://teamcity.jetbrains.com/guestAuth/repository/download/[module]/[revision]/[artifact](.[ext])'
|
||||
ivyPattern 'https://teamcity.jetbrains.com/guestAuth/repository/download/[module]/[revision]/teamcity-ivy.xml'
|
||||
artifactPattern 'https://teamcity.jetbrains.com/guestAuth/repository/download/[module]/[revision]/[artifact](.[ext])'
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -16,7 +16,7 @@
|
||||
|
||||
# A version of the Kotlin "toolchain" (compiler, runtime, stdlib etc) used by the build script.
|
||||
buildKotlinVersion=1.3.0-rc-6
|
||||
buildKotlinCompilerRepo=http://dl.bintray.com/kotlin/kotlin-dev
|
||||
buildKotlinCompilerRepo=https://dl.bintray.com/kotlin/kotlin-dev
|
||||
remoteRoot=konan_tests
|
||||
testDataVersion=1226829:id
|
||||
kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_130_CompilerAllPlugins),number:1.3.0-rc-57,tag:kotlin-native,pinned:true/artifacts/content/maven
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
allprojects {
|
||||
buildscript {
|
||||
repositories {
|
||||
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
|
||||
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
|
||||
}
|
||||
}
|
||||
|
||||
repositories {
|
||||
maven { url "http://dl.bintray.com/kotlin/kotlin-dev" }
|
||||
maven { url "https://dl.bintray.com/kotlin/kotlin-dev" }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user