Files
kotlin-fork/libraries/examples/annotation-processor-example/build.gradle.kts
T

16 lines
249 B
Kotlin

description = "Simple Annotation Processor for testing kapt"
apply {
plugin("kotlin")
plugin("maven") // only used for installing to mavenLocal()
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
}
sourceSets {
"test" {}
}