From 4c14ea40327895966b976c8929c056e93f5e4afa Mon Sep 17 00:00:00 2001 From: Dean Wette Date: Fri, 26 Apr 2024 11:32:42 -0500 Subject: [PATCH] docs: clarify how to add annotation processor dependencies for Kotlin and Groovy projects --- src/main/docs/guide/quickStart.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/docs/guide/quickStart.adoc b/src/main/docs/guide/quickStart.adoc index 1107c8b95..0fb12fa8b 100644 --- a/src/main/docs/guide/quickStart.adoc +++ b/src/main/docs/guide/quickStart.adoc @@ -4,5 +4,7 @@ The first step however is configure the necessary annotation processor dependenc dependency:micronaut-serde-processor[groupId="io.micronaut.serde",scope="annotationProcessor"] +NOTE: For Kotlin, add the `micronaut-serde-processor` dependency in https://docs.micronaut.io/4.4.3/guide/#kaptOrKsp[kapt or ksp scope], and for Groovy add `micronaut-serde-processor` in compileOnly scope. + You should then choose a combination of Annotation-based programming model and runtime implementation that you desire.