d1ee05c7f6
This reverts commit 078849d1
21 lines
345 B
Kotlin
21 lines
345 B
Kotlin
import org.jetbrains.kotlin.pill.PillExtension
|
|
|
|
description = "Simple Annotation Processor for testing kapt"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
maven // only used for installing to mavenLocal()
|
|
id("jps-compatible")
|
|
}
|
|
|
|
pill {
|
|
variant = PillExtension.Variant.FULL
|
|
}
|
|
|
|
dependencies {
|
|
compile(kotlinStdlib())
|
|
}
|
|
|
|
sourceSets {
|
|
"test" {}
|
|
} |