[kotlin compiler][update] 1.2.0-rc-39

This commit is contained in:
Vasily Levchenko
2017-11-01 12:17:11 +03:00
committed by Vasily Levchenko
parent e2fc1ddb53
commit 5d514e3ede
7 changed files with 111 additions and 65 deletions
@@ -39,25 +39,6 @@ apply plugin: 'com.jfrog.bintray'
group = 'org.jetbrains.kotlin'
version = konanVersion
// TODO: move this code to top level (the same for backend.native)
// Copied from backend.native
allprojects {
repositories {
maven { url kotlinCompilerRepo }
}
configurations.all {
// kotlin-compiler module includes Kotlin runtime bundled;
// make Gradle aware of this to avoid multiple Kotlin runtimes in classpath:
resolutionStrategy.dependencySubstitution {
substitute module('org.jetbrains.kotlin:kotlin-runtime') with module(kotlinCompilerModule)
substitute module('org.jetbrains.kotlin:kotlin-stdlib') with module(kotlinStdLibModule)
substitute module('org.jetbrains.kotlin:kotlin-reflect') with module(kotlinReflectModule)
}
// TODO: probably we should use kotlin-compiler without bundled runtime
}
}
repositories {
mavenCentral()
}