Files
kotlin-fork/prepare/kotlin-annotation-processing-embeddable/build.gradle.kts
T
2021-09-26 20:10:29 +03:00

18 lines
297 B
Kotlin

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