15 lines
323 B
Kotlin
15 lines
323 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
val compile by configurations
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(kotlinDep("reflect"))
|
|
compile(preloadedDeps("kotlinx-coroutines-core"))
|
|
}
|
|
|
|
configureKotlinProjectSourcesDefault()
|
|
configureKotlinProjectNoTests()
|
|
|