f91d6958a8
#KTI-559
23 lines
594 B
Kotlin
23 lines
594 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()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
sourcesJar { includeEmptyDirs = false; eachFile { exclude() } } // empty Jar, no public sources
|
|
javadocJar { includeEmptyDirs = false; eachFile { exclude() } } // empty Jar, no public javadocs
|