1eb27f2aac
- removed 'kotlin-annotation-processing-gradle' publication as it duplicated 'kotlin-annotation-processing-embeddable' - removed 'kotlin-annotation-processing-maven' as it is embedded into 'kotlin-maven-plugin'. Instead 'kotlin-maven-plugin' now depends on 'kotlin-annotation-processing' directly. ^KT-52811 In Progress
16 lines
305 B
Kotlin
16 lines
305 B
Kotlin
description = "Annotation Processor for Kotlin (for using with embeddable compiler)"
|
|
|
|
plugins {
|
|
`java-library`
|
|
}
|
|
|
|
dependencies {
|
|
embedded(project(":kotlin-annotation-processing")) { isTransitive = false }
|
|
}
|
|
|
|
publish()
|
|
|
|
runtimeJar(rewriteDefaultJarDepsToShadedCompiler())
|
|
sourcesJar()
|
|
javadocJar()
|