mirror of
https://github.com/whitechi73/OpenShamrock.git
synced 2024-08-14 13:12:17 +08:00
18 lines
514 B
Plaintext
18 lines
514 B
Plaintext
plugins {
|
|
kotlin("jvm")
|
|
id("com.google.devtools.ksp") version "1.9.21-1.0.15"
|
|
}
|
|
|
|
ksp {
|
|
arg("autoserviceKsp.verify", "true")
|
|
arg("autoserviceKsp.verbose", "true")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":annotations"))
|
|
implementation("com.google.auto.service:auto-service-annotations:1.1.1")
|
|
implementation("com.google.devtools.ksp:symbol-processing-api:1.9.21-1.0.15")
|
|
implementation("com.squareup:kotlinpoet:1.14.2")
|
|
|
|
ksp("dev.zacsweers.autoservice:auto-service-ksp:1.1.0")
|
|
} |