4aa3040550
maven-publish plugin uses `runtimeOnly` for runtime scope instead of `runtime`
25 lines
443 B
Kotlin
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()
|