Files
kotlin-fork/libraries/examples/annotation-processor-example/build.gradle.kts
T
Yan Zhulanow 1fb8fb2324 [Pill] Do not import modules with the 'FULL' variant
The 'FULL' variant proved to be hardly useful for everyday work.
This change is the first step of removing the variant support from Pill.
2023-12-07 08:53:35 +00:00

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"))
}