17 lines
394 B
Kotlin
17 lines
394 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(":build-common"))
|
|
}
|
|
|
|
configureKotlinProjectSourcesDefault()
|
|
configureKotlinProjectTestsDefault()
|
|
|