File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
test-suite-graal-databind
src/test/kotlin/example/micronaut Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ configurations.all {
29
29
dependencies {
30
30
implementation(projects.micronautKotlinRuntime)
31
31
implementation(mn.micronaut.http.client)
32
- implementation(mn.micronaut.jackson.databind)
32
+ annotationProcessor(mnSerde.micronaut.serde.processor)
33
+ implementation(mnSerde.micronaut.serde.jackson)
33
34
implementation(libs.kotlin.reflect)
34
35
implementation(mnReactor.micronaut.reactor)
35
36
Original file line number Diff line number Diff line change 1
1
package example.micronaut
2
2
3
- import io.micronaut.core .annotation.Introspected
3
+ import io.micronaut.serde .annotation.Serdeable
4
4
5
- @Introspected
5
+ @Serdeable
6
6
data class Greeting (val message : String )
You can’t perform that action at this time.
0 commit comments