Files
kotlin-fork/compiler/incremental-compilation-impl/build.gradle.kts
T
2017-09-19 21:37:25 +02:00

21 lines
568 B
Kotlin

apply { plugin("kotlin") }
dependencies {
val compile by configurations
compile(project(":core"))
compile(project(":compiler:util"))
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java"))
compile(project(":compiler:cli"))
compile(project(":kotlin-build-common"))
testCompile(project(":kotlin-test:kotlin-test-junit"))
testCompile(project(":kotlin-stdlib"))
testCompile(projectTests(":kotlin-build-common"))
}
configureKotlinProjectSourcesDefault()
configureKotlinProjectTestsDefault()
testsJar()