Skip to content

Commit a9ed516

Browse files
committed
Update Jackson to 2.14.1 and fix dependency resolution issues
Signed-off-by: Andriy Redko <[email protected]>
1 parent 2af7321 commit a9ed516

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ buildscript {
88
ext {
99
opensearch_version = System.getProperty("opensearch.version", "2.4.0-SNAPSHOT")
1010
spring_version = "5.3.22"
11-
jackson_version = "2.14.0"
12-
jackson_databind_version = "2.14.0"
11+
jackson_version = "2.14.1"
12+
jackson_databind_version = "2.14.1"
1313
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
1414
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
1515
version_tokens = opensearch_version.tokenize('-')

plugin/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ configurations.all {
8989
// enforce 1.1.3, https://www.whitesourcesoftware.com/vulnerability-database/WS-2019-0379
9090
resolutionStrategy.force 'commons-codec:commons-codec:1.13'
9191
resolutionStrategy.force 'com.google.guava:guava:31.0.1-jre'
92+
resolutionStrategy.force "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${jackson_version}"
93+
resolutionStrategy.force "com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${jackson_version}"
9294
resolutionStrategy.force "com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${jackson_version}"
9395
resolutionStrategy.force "com.fasterxml.jackson.core:jackson-databind:${jackson_databind_version}"
9496
resolutionStrategy.force "org.jetbrains.kotlin:kotlin-stdlib:1.6.0"

0 commit comments

Comments
 (0)