[Commonizer] Publish artifact for Kotlin embeddable compiler

This commit is contained in:
Dmitriy Dolovov
2020-02-01 18:23:44 +07:00
parent 4027079b41
commit 91fce721b3
2 changed files with 27 additions and 0 deletions
@@ -0,0 +1,25 @@
description = "Kotlin KLIB Library Commonizer (for using with embeddable compiler)"
plugins {
java
}
dependencies {
embedded(project(":native:kotlin-klib-commonizer")) { isTransitive = false }
runtime(kotlinStdlib())
runtime(project(":kotlin-compiler-embeddable"))
runtime(project(":native:kotlin-native-utils"))
}
sourceSets {
"main" {}
"test" {}
}
publish()
noDefaultJar()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()