Files
kotlin-fork/libraries/examples/annotation-processor-example/build.gradle.kts
T
Vyacheslav Gerasimov f58acbeef5 Build: implement useBootstrapStdlib flag
Excludes stdlib projects from build and uses bootstrap stdlib artifacts

 #KT-29205
2019-01-21 21:09:40 +03:00

16 lines
223 B
Kotlin

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