Files
kotlin-fork/compiler/daemon/daemon-client/build.gradle.kts
T
2017-09-19 21:37:22 +02:00

29 lines
513 B
Kotlin

description = "Kotlin Daemon Client"
apply { plugin("kotlin") }
val nativePlatformUberjar = preloadedDeps("native-platform-uberjar")
dependencies {
compileOnly(project(":compiler:util"))
compileOnly(project(":compiler:cli-common"))
compileOnly(project(":compiler:daemon-common"))
compileOnly(nativePlatformUberjar)
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
runtimeJar {
nativePlatformUberjar.forEach {
from(zipTree(it))
}
}
sourcesJar()
dist()