0f41dc814f
also refactor some locally defined tasks to the creation avoidance API
19 lines
320 B
Kotlin
19 lines
320 B
Kotlin
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()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
|
|
sourcesJar()
|
|
|
|
javadocJar() |