Skip to content

Commit 91e70bc

Browse files
fix(deps): update jackson packages to v2.19.2
1 parent 42dce27 commit 91e70bc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

dependencyManagement/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ val DEPENDENCY_BOMS = listOf(
2727
// for some reason boms show up as runtime dependencies in license and vulnerability scans
2828
// even if they are only used by test dependencies, so not using junit bom since it is LGPL
2929

30-
"com.fasterxml.jackson:jackson-bom:2.19.1",
30+
"com.fasterxml.jackson:jackson-bom:2.19.2",
3131
"com.squareup.okio:okio-bom:3.15.0", // see https://github.com/open-telemetry/opentelemetry-java/issues/5637
3232
"com.google.guava:guava-bom:33.4.8-jre",
3333
"org.apache.groovy:groovy-bom:${groovyVersion}",

examples/distro/smoke-tests/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
dependencies {
66
testImplementation("org.testcontainers:testcontainers:1.21.3")
7-
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.1")
7+
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.2")
88
testImplementation("com.google.protobuf:protobuf-java-util:4.31.1")
99
testImplementation("com.squareup.okhttp3:okhttp:5.1.0")
1010
testImplementation("io.opentelemetry.proto:opentelemetry-proto:1.7.0-alpha")

examples/extension/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ dependencies {
9898

9999
//All dependencies below are only for tests
100100
testImplementation("org.testcontainers:testcontainers:1.21.3")
101-
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.1")
101+
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.19.2")
102102
testImplementation("com.google.protobuf:protobuf-java-util:4.31.1")
103103
testImplementation("com.squareup.okhttp3:okhttp:5.1.0")
104104
testImplementation("io.opentelemetry:opentelemetry-api")

instrumentation-docs/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ otelJava {
99

1010
dependencies {
1111
implementation("org.yaml:snakeyaml:2.4")
12-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.1")
12+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.2")
1313
implementation("io.opentelemetry:opentelemetry-sdk-common")
1414

1515
testImplementation(enforcedPlatform("org.junit:junit-bom:5.13.3"))

testing/wiremock-shaded-for-testing/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
// class conflict reported in the failure.
99
implementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
1010
implementation("com.google.errorprone:error_prone_annotations")
11-
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.1")
11+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.19.2")
1212
}
1313

1414
tasks {

0 commit comments

Comments
 (0)