Files
kotlin-fork/compiler/compiler-runner/build.gradle.kts
T
2017-09-19 21:37:18 +02:00

18 lines
459 B
Kotlin

apply { plugin("kotlin") }
dependencies {
val compile by configurations
compile(project(":build-common"))
compile(project(":compiler:cli-common"))
compile(project(":kotlin-preloader"))
compile(project(":compiler:frontend.java"))
compile(project(":compiler:daemon-common"))
compile(project(":kotlin-daemon-client"))
compile(project(":compiler:util"))
}
configureKotlinProjectSourcesDefault()
configureKotlinProjectNoTests()