8a82c1618c
When plugins DSL is used, there is no need to manually generate typesafe accessors for extensions and conventions (by running `./gradlew kotlinDslAccessorsSnapshot`).
16 lines
238 B
Kotlin
16 lines
238 B
Kotlin
description = "Simple Annotation Processor for testing kapt"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
maven // only used for installing to mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
compile(projectDist(":kotlin-stdlib"))
|
|
}
|
|
|
|
sourceSets {
|
|
"test" {}
|
|
}
|
|
|