blob: db359ecf7b5fda033fc0c5c463623924c5bb212f [file] [log] [blame]
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
}
}
include("api")
include("gradle-plugin")
include("compiler-plugin")
include("symbol-processing")
val kotlinProjectPath: String? by settings
if (kotlinProjectPath != null) {
includeBuild(kotlinProjectPath!!) {
dependencySubstitution {
substitute(module("org.jetbrains.kotlin:kotlin-compiler")).with(project(":include:kotlin-compiler"))
// substitute(module("org.jetbrains.kotlin:kotlin-compiler-tests")).with(project(":include:kotlin-compiler-tests"))
}
}
}