blob: f85e0a3aa5632d3e4da3598a3dbafd9a8bd6ec62 [file] [log] [blame]
description = "Kotlin Daemon Client"
apply { plugin("kotlin") }
jvmTarget = "1.6"
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" {}
}
runtimeJar {
nativePlatformUberjar.forEach {
from(zipTree(it))
}
from(getSourceSetsFrom(":compiler:daemon-common")["main"].output.classesDirs)
}
sourcesJar()
javadocJar()
dist()
ideaPlugin()
publish()