f58acbeef5
Excludes stdlib projects from build and uses bootstrap stdlib artifacts #KT-29205
16 lines
223 B
Kotlin
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" {}
|
|
}
|
|
|