Files
kotlin-fork/plugins/jvm-abi-gen/embeddable/build.gradle.kts
T
Yahor Berdnikau e25778a719 Fix ConcurrentModificationException
This exception is happening on build configuration trying to remove
default jar task artifacts from published one. I've set 'jar' task
to be always disabled instead and just add shadow jar to artifacts.
2022-05-24 07:58:36 +00: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()