0f41dc814f
also refactor some locally defined tasks to the creation avoidance API
20 lines
332 B
Kotlin
20 lines
332 B
Kotlin
import org.gradle.jvm.tasks.Jar
|
|
|
|
description = "Annotation Processor for Kotlin (for using with embeddable compiler)"
|
|
|
|
plugins {
|
|
`java`
|
|
}
|
|
|
|
dependencies {
|
|
embedded(project(":kotlin-annotation-processing")) { isTransitive = false }
|
|
}
|
|
|
|
publish()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
|
|
sourcesJar()
|
|
|
|
javadocJar()
|