Use HTTPS when downloading dependencies (#2118)

This commit is contained in:
Henrik Tunedal
2018-09-22 22:18:45 +02:00
committed by Nikolay Igotti
parent 6bc47171ca
commit 23b58c38ac
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -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" }
}
}