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

18 lines
466 B
Kotlin

apply { plugin("kotlin") }
dependencies {
val compile by configurations
compile(project(":kotlin-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()