a18770fbbb
Use default configuration dependencies instead of projectDist ones.
16 lines
234 B
Kotlin
16 lines
234 B
Kotlin
description = "Simple Annotation Processor for testing kapt"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
maven // only used for installing to mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
compile(project(":kotlin-stdlib"))
|
|
}
|
|
|
|
sourceSets {
|
|
"test" {}
|
|
}
|
|
|