diff --git a/build-tools-internal/version.properties b/build-tools-internal/version.properties
index 270d557dfd209..0444d4152ce10 100644
--- a/build-tools-internal/version.properties
+++ b/build-tools-internal/version.properties
@@ -7,7 +7,7 @@ bundled_jdk = 19.0.2+7@fdb695a9d9064ad6b064dc6df578380c
# optional dependencies
spatial4j = 0.7
jts = 1.15.0
-jackson = 2.13.3
+jackson = 2.14.2
snakeyaml = 1.33
icu4j = 68.2
supercsv = 2.4.0
diff --git a/docs/changelog/93438.yaml b/docs/changelog/93438.yaml
new file mode 100644
index 0000000000000..24464b4245d9e
--- /dev/null
+++ b/docs/changelog/93438.yaml
@@ -0,0 +1,5 @@
+pr: 93438
+summary: Align all usages of Jackson to be 2.14.2
+area: Infra/Core
+type: upgrade
+issues: []
diff --git a/gradle/build.versions.toml b/gradle/build.versions.toml
index d76e81d2c2fdd..638c2ac141876 100644
--- a/gradle/build.versions.toml
+++ b/gradle/build.versions.toml
@@ -1,6 +1,6 @@
[versions]
asm = "9.3"
-jackson = "2.13.2"
+jackson = "2.14.2"
junit5 = "5.8.1"
spock = "2.1-groovy-3.0"
diff --git a/gradle/verification-metadata.xml b/gradle/verification-metadata.xml
index 437534a5021a3..1e220398dae36 100644
--- a/gradle/verification-metadata.xml
+++ b/gradle/verification-metadata.xml
@@ -229,16 +229,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -254,21 +244,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -284,16 +259,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -304,56 +269,26 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -374,11 +309,6 @@
-
-
-
-
-
diff --git a/modules/ingest-geoip/build.gradle b/modules/ingest-geoip/build.gradle
index ad5e28646b88f..62a78e4ef033a 100644
--- a/modules/ingest-geoip/build.gradle
+++ b/modules/ingest-geoip/build.gradle
@@ -29,9 +29,9 @@ tasks.named('internalClusterTestTestingConventions').configure {
dependencies {
implementation('com.maxmind.geoip2:geoip2:4.0.0')
// geoip2 dependencies:
- runtimeOnly("com.fasterxml.jackson.core:jackson-annotations:2.14.2")
- runtimeOnly("com.fasterxml.jackson.core:jackson-databind:2.14.2")
- runtimeOnly("com.fasterxml.jackson.core:jackson-core:2.14.2")
+ runtimeOnly("com.fasterxml.jackson.core:jackson-annotations:${versions.jackson}")
+ runtimeOnly("com.fasterxml.jackson.core:jackson-databind:${versions.jackson}")
+ runtimeOnly("com.fasterxml.jackson.core:jackson-core:${versions.jackson}")
implementation('com.maxmind.db:maxmind-db:3.0.0')
testImplementation 'org.elasticsearch:geolite2-databases:20191119'