@@ -60,11 +60,16 @@ ext {
6060
6161dependencies {
6262 implementation " com.google.code.findbugs:jsr305:3.0.2"
63- implementation " com.fasterxml.jackson.core:jackson-core:$jackson_version "
64- implementation " com.fasterxml.jackson.core:jackson-annotations:$jackson_version "
65- implementation " com.fasterxml.jackson.core:jackson-databind:$jackson_version "
66- implementation " com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version "
63+
64+ // ---- Jackson ----
65+ implementation platform(" com.fasterxml.jackson:jackson-bom:$jackson_version " )
66+ implementation " com.fasterxml.jackson.core:jackson-core"
67+ implementation " com.fasterxml.jackson.core:jackson-annotations"
68+ implementation " com.fasterxml.jackson.core:jackson-databind"
69+ implementation " com.fasterxml.jackson.datatype:jackson-datatype-jsr310"
6770 implementation " org.openapitools:jackson-databind-nullable:0.2.7"
71+
72+ // ---- OpenTelemetry ----
6873 implementation platform(" io.opentelemetry:opentelemetry-bom:1.53.0" )
6974 implementation " io.opentelemetry:opentelemetry-api"
7075}
@@ -104,8 +109,11 @@ testing {
104109 useJUnitJupiter()
105110
106111 dependencies {
107- implementation " com.fasterxml.jackson.core:jackson-core:$jackson_version "
108- implementation " com.fasterxml.jackson.core:jackson-databind:$jackson_version "
112+ // --- Jackson ---
113+ implementation platform(" com.fasterxml.jackson:jackson-bom:$jackson_version " )
114+ implementation " com.fasterxml.jackson.core:jackson-core"
115+ implementation " com.fasterxml.jackson.core:jackson-databind"
116+
109117 implementation " org.testcontainers:junit-jupiter:1.21.3"
110118 implementation " org.testcontainers:openfga:1.21.3"
111119 implementation project()
0 commit comments