We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68ca2d9 commit d583915Copy full SHA for d583915
build.gradle.kts
@@ -35,7 +35,12 @@ repositories {
35
}
36
37
dependencies {
38
- api("com.fasterxml.jackson.core:jackson-annotations:2.14.2")
+ // The API needs databind because JacksonObjectMapper.java
39
+ // exposes a com.fasterxml.jackson.databind.ObjectMapper
40
+ // on its public APi.
41
+ api("com.fasterxml.jackson.core:jackson-databind:2.14.2")
42
+
43
+ implementation("com.fasterxml.jackson.core:jackson-annotations:2.14.2")
44
// Java 8 date/time type java.time.OffsetDateTime not supported by default,
45
// so we need to add com.fasterxml.jackson.datatype:jackson-datatype-jsr310
46
implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.2")
0 commit comments