Files
kotlin-fork/compiler/frontend.script/build.gradle.kts
T
2017-09-19 23:58:30 +02:00

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" {}
}