Files
kotlin-fork/prepare/kotlin-annotation-processing-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

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