Skip to content

Commit b1d5b30

Browse files
committed
Bump jackson to 2.14.1
Signed-off-by: Joshua Li <[email protected]>
1 parent 4c21b71 commit b1d5b30

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

reports-scheduler/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ buildscript {
2525
}
2626

2727
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
28-
job_scheduler_version = System.getProperty("job_scheduler.version", opensearch_build)
28+
job_scheduler_version = System.getProperty("job_scheduler.version", opensearch_build)
2929
kotlin_version = System.getProperty("kotlin.version", "1.6.0")
30+
jackson_version = "2.14.1"
3031
}
3132

3233
repositories {
@@ -167,8 +168,8 @@ dependencies {
167168
implementation group: 'com.github.wnameless.json', name: 'json-flattener', version: '0.15.1'
168169
// json-base, jackson-databind, jackson-annotations are transitive dependencies by json-flattener
169170
implementation group: 'com.github.wnameless.json', name: 'json-base', version: '2.2.1'
170-
implementation "com.fasterxml.jackson.core:jackson-databind:2.13.4"
171-
implementation "com.fasterxml.jackson.core:jackson-annotations:2.13.4"
171+
implementation "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
172+
implementation "com.fasterxml.jackson.core:jackson-annotations:${jackson_version}"
172173
implementation 'org.jsoup:jsoup:1.15.3'
173174
implementation 'com.google.code.gson:gson:2.8.9'
174175
implementation "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"

0 commit comments

Comments
 (0)