Files
kotlin-fork/plugins/jvm-abi-gen/embeddable/build.gradle.kts
T
Ilya Chernikov 0f41dc814f Switch many common tasks defined in buildSrc to lazy creation
also refactor some locally defined tasks to the creation avoidance API
2019-08-21 20:20:08 +02:00

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()