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