13 lines
300 B
Kotlin
13 lines
300 B
Kotlin
description = "Simple Annotation Processor for testing kapt"
|
|
|
|
apply { plugin("kotlin") }
|
|
|
|
dependencies {
|
|
val compile by configurations
|
|
compile(kotlinDep("stdlib"))
|
|
}
|
|
|
|
configureKotlinProjectSources("src/kotlin")
|
|
configureKotlinProjectResources("src/resources")
|
|
configureKotlinProjectNoTests()
|