Add embeddable artifact for jvm-abi-gen

#KT-28824 Fixed
This commit is contained in:
Ty Smith
2019-07-26 10:15:31 -04:00
committed by Alexey Tsvetkov
parent 37042801c4
commit e74a00789d
2 changed files with 22 additions and 0 deletions
@@ -0,0 +1,20 @@
import org.gradle.jvm.tasks.Jar
description = "ABI generation for Kotlin/JVM (for using with embeddable compiler)"
plugins {
`java`
}
dependencies {
embedded(project(":plugins:jvm-abi-gen")) { isTransitive = false }
}
publish()
val jar: Jar by tasks
runtimeJar(rewriteDepsToShadedCompiler(jar))
sourcesJar()
javadocJar()