diff options
author | nea <nea@nea.moe> | 2023-01-19 08:45:21 +0100 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-01-19 08:45:21 +0100 |
commit | 456f7bf9891b6f026f8c2ac652550da04f64f7b5 (patch) | |
tree | c4e73d9b5640a22f1ec4bc07209321febf8b47e9 /build.gradle.kts | |
parent | 306efb75e55ce302dccbe886511ba695d5e183dd (diff) | |
download | NotEnoughUpdates-feat/annotationregistering.tar.gz NotEnoughUpdates-feat/annotationregistering.tar.bz2 NotEnoughUpdates-feat/annotationregistering.zip |
Don't bundle KSP / annotation processorfeat/annotationregistering
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build.gradle.kts b/build.gradle.kts index 86e03cd6..e41aa513 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -134,8 +134,8 @@ dependencies { implementation(enforcedPlatform("org.jetbrains.kotlin:kotlin-bom:1.8.0")) kotlinDependencies(kotlin("stdlib")) - ksp(shadowImplementation(project(":annotations"))!!) - compileOnly("org.projectlombok:lombok:1.18.24") + compileOnly(ksp(project(":annotations"))!!) + compileOnly("org.projectlombok:lombok:1.18.24") annotationProcessor("org.projectlombok:lombok:1.18.24") "oneconfigAnnotationProcessor"("org.projectlombok:lombok:1.18.24") |