29 lines
513 B
Kotlin
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()
|
|
|