Files
kotlin-fork/libraries/examples/annotation-processor-example/build.gradle.kts
T
Ilya Gorbunov a18770fbbb Remove projectDist dependency helper usages
Use default configuration dependencies instead of projectDist ones.
2018-09-12 06:05:05 +03:00

16 lines
234 B
Kotlin

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