Files
kotlin-fork/plugins/kapt3/kapt3-runtime/build.gradle.kts
T
Alexey Tsvetkov 8a82c1618c Use Plugins DSL in Kotlin Gradle scripts
When plugins DSL is used, there is no need to
manually generate typesafe accessors for extensions and
conventions (by running `./gradlew kotlinDslAccessorsSnapshot`).
2018-03-26 16:09:29 +03:00

26 lines
365 B
Kotlin

description = "Kotlin Annotation Processing Runtime"
plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compile(projectDist(":kotlin-stdlib"))
}
jvmTarget = "1.6"
sourceSets {
"main" { projectDefault() }
"test" {}
}
runtimeJar()
sourcesJar()
javadocJar()
dist(targetName = "kotlin-annotation-processing-runtime.jar")
publish()