Files
kotlin-fork/prepare/kotlin-daemon-embeddable/build.gradle.kts
T
2021-09-26 20:10:29 +03:00

17 lines
265 B
Kotlin

description = "Kotlin Daemon (for using with embeddable compiler)"
plugins {
`java`
}
dependencies {
embedded(project(":kotlin-daemon")) { isTransitive = false }
}
publish()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()