From 456f7bf9891b6f026f8c2ac652550da04f64f7b5 Mon Sep 17 00:00:00 2001 From: nea Date: Thu, 19 Jan 2023 08:45:21 +0100 Subject: Don't bundle KSP / annotation processor --- build.gradle.kts | 4 ++-- 1 file 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") -- cgit