blob: c97afe1e0a3b212d7487555862c6c4fcd1976f53 [file] [log] [blame] [edit]
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()
noDefaultJar()
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
sourcesJar()
javadocJar()