13 lines
181 B
Kotlin
13 lines
181 B
Kotlin
description = "Simple Annotation Processor for testing kapt"
|
|
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
compile(projectDist(":kotlin-stdlib"))
|
|
}
|
|
|
|
sourceSets {
|
|
"test" {}
|
|
}
|
|
|