18 lines
308 B
Kotlin
18 lines
308 B
Kotlin
|
|
apply { plugin("kotlin") }
|
|
|
|
jvmTarget = "1.6"
|
|
|
|
dependencies {
|
|
compile(project(":compiler:util"))
|
|
compile(project(":compiler:frontend"))
|
|
compile(projectDist(":kotlin-reflect"))
|
|
compile(preloadedDeps("kotlinx-coroutines-core"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|