diff options
author | Roman / Linnea Gräf <roman.graef@gmail.com> | 2023-03-13 23:43:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 23:43:40 +0100 |
commit | 86cd165c1ad9a72567cf5d033a8ff92779f72b30 (patch) | |
tree | 55960f96bd155aaa29ca03c5f79e61f830aa0ae0 /build.gradle.kts | |
parent | d249bbdc8e99bfdab81aa6b215e70c4f21def91e (diff) | |
download | NotEnoughUpdates-86cd165c1ad9a72567cf5d033a8ff92779f72b30.tar.gz NotEnoughUpdates-86cd165c1ad9a72567cf5d033a8ff92779f72b30.tar.bz2 NotEnoughUpdates-86cd165c1ad9a72567cf5d033a8ff92779f72b30.zip |
Improve NPC shop generator (#650)
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index aec078d3..333f75cd 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -134,6 +134,9 @@ dependencies { implementation(enforcedPlatform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) kotlinDependencies(kotlin("stdlib")) + ksp("dev.zacsweers.autoservice:auto-service-ksp:1.0.0") + implementation("com.google.auto.service:auto-service-annotations:1.0.1") + compileOnly(ksp(project(":annotations"))!!) compileOnly("org.projectlombok:lombok:1.18.24") annotationProcessor("org.projectlombok:lombok:1.18.24") |