[build] Move shared and gradle-plugin into separate gradle builds

Platform libs build will be changed by a separate commit
This commit is contained in:
Ilya Matveev
2017-12-28 14:46:24 +07:00
committed by ilmat192
parent 0f85696ffb
commit a2b6c71f73
12 changed files with 84 additions and 36 deletions
+12 -2
View File
@@ -26,6 +26,16 @@ include ':runtime'
include ':common'
include ':backend.native:tests'
include ':backend.native:debugger-tests'
include ':shared'
include ':tools:kotlin-native-gradle-plugin'
// TODO: remove
// TODO: Use 'shared' build in buildSrc and all build scripts as a dependency (of a build script too)
//include ':shared'
//include ':tools:kotlin-native-gradle-plugin'
include ':utilities'
include ':performance'
includeBuild 'tools/kotlin-native-gradle-plugin'
includeBuild('shared') {
dependencySubstitution {
substitute module('org.jetbrains.kotlin:kotlin-native-shared') with project(':')
}
}