[build] Support composite build with Kotlin/JVM

This commit is contained in:
Ilya Matveev
2018-03-12 16:08:44 +03:00
committed by ilmat192
parent 88fcae144e
commit 5ab7296ceb
2 changed files with 13 additions and 13 deletions
+8
View File
@@ -33,3 +33,11 @@ include ':platformLibs'
includeBuild 'tools/kotlin-native-gradle-plugin'
includeBuild 'shared'
if (hasProperty("kotlinProjectPath")) {
includeBuild(kotlinProjectPath) {
dependencySubstitution {
substitute module('org.jetbrains.kotlin:kotlin-compiler') with project(':include:kotlin-compiler')
}
}
}