Files
kotlin-fork/native/commonizer-embeddable/build.gradle.kts
T
Vyacheslav Gerasimov 4aa3040550 Build: Use runtimeOnly instead of deprecated runtime
maven-publish plugin uses `runtimeOnly` for runtime scope instead of
`runtime`
2020-06-14 20:31:26 +03:00

25 lines
443 B
Kotlin

description = "Kotlin KLIB Library Commonizer (for using with embeddable compiler)"
plugins {
java
}
dependencies {
embedded(project(":native:kotlin-klib-commonizer")) { isTransitive = false }
runtimeOnly(kotlinStdlib())
runtimeOnly(project(":kotlin-compiler-embeddable"))
}
sourceSets {
"main" {}
"test" {}
}
publish()
noDefaultJar()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()