1fb8fb2324
The 'FULL' variant proved to be hardly useful for everyday work. This change is the first step of removing the variant support from Pill.
26 lines
439 B
Kotlin
26 lines
439 B
Kotlin
description = "Simple Annotation Processor for testing kapt"
|
|
|
|
plugins {
|
|
kotlin("jvm")
|
|
`maven-publish` // only used for installing to mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
api(kotlinStdlib())
|
|
}
|
|
|
|
sourceSets {
|
|
"test" {}
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("main") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.register("install") {
|
|
dependsOn(tasks.named("publishToMavenLocal"))
|
|
} |