Build: Add property for internal kotlin repo

This commit is contained in:
Vyacheslav Gerasimov
2019-05-24 14:48:36 +03:00
parent 2ce961a662
commit 6a38cb050f
2 changed files with 6 additions and 2 deletions
+2 -2
View File
@@ -337,13 +337,13 @@ allprojects {
repositories {
kotlinBuildLocalRepo(project)
mirrorRepo?.let(::maven)
bootstrapKotlinRepo?.let(::maven)
jcenter()
maven(protobufRepo)
maven(intellijRepo)
maven("https://dl.bintray.com/kotlin/ktor")
maven("https://kotlin.bintray.com/kotlin-dependencies")
maven(bootstrapKotlinRepo!!.replace("artifacts/content/maven/", "artifacts/content/internal/repo"))
bootstrapKotlinRepo?.let(::maven)
internalKotlinRepo?.let(::maven)
}
configureJvmProject(javaHome!!, jvmTarget!!)