Skip to content

Commit e75b5b9

Browse files
committed
chore(deps): upgrade to Jackson 2.20.0
Jackson annotation now uses a version scheme without micro version so it has been updated to 2.20. Closes #11069
1 parent 3d306a8 commit e75b5b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

platform/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ dependencies {
2121
def opensearchVersion = "3.2.0"
2222
def opensearchRestVersion = "3.2.0"
2323
def flyingSaucerVersion = "9.13.3"
24-
def jacksonVersion = "2.19.2"
24+
def jacksonVersion = "2.20.0"
25+
def jacksonAnnotationsVersion = "2.20"
2526
def jugVersion = "5.1.0"
2627
def langchain4jVersion = "1.4.0"
2728
def langchain4jCommunityVersion = "1.4.0-beta10"
@@ -51,7 +52,7 @@ dependencies {
5152
// ugly hack for jackson: as enforcing platform didn't work (it didn't enforce everywhere, not in plugins), we had to force all jackson libs individually.
5253
api("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
5354
api("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
54-
api("com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion")
55+
api("com.fasterxml.jackson.core:jackson-annotations:$jacksonAnnotationsVersion")
5556
api("com.fasterxml.jackson.module:jackson-module-parameter-names:$jacksonVersion")
5657
api("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jacksonVersion")
5758
api("com.fasterxml.jackson.dataformat:jackson-dataformat-smile:$jacksonVersion")

0 commit comments

Comments
 (0)