We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0076a3 commit 52a3249Copy full SHA for 52a3249
test-suite-graal-databind/build.gradle.kts
@@ -29,7 +29,8 @@ configurations.all {
29
dependencies {
30
implementation(projects.micronautKotlinRuntime)
31
implementation(mn.micronaut.http.client)
32
- implementation(mn.micronaut.jackson.databind)
+ annotationProcessor(mnSerde.micronaut.serde.processor)
33
+ implementation(mnSerde.micronaut.serde.jackson)
34
implementation(libs.kotlin.reflect)
35
implementation(mnReactor.micronaut.reactor)
36
test-suite-graal-databind/src/test/kotlin/example/micronaut/Greeting.kt
@@ -1,6 +1,6 @@
1
package example.micronaut
2
3
-import io.micronaut.core.annotation.Introspected
+import io.micronaut.serde.annotation.Serdeable
4
5
-@Introspected
+@Serdeable
6
data class Greeting(val message: String)
0 commit comments