Skip to content

Commit 4f1e6c2

Browse files
rupal-bqgithub-actions[bot]
authored andcommitted
Add jackson-databind and jackson-annotations (#650)
Signed-off-by: Rupal Mahajan <[email protected]> (cherry picked from commit cc34ae8)
1 parent 61bbdb3 commit 4f1e6c2

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ buildscript {
2727
common_utils_version = System.getProperty("common_utils.version", opensearch_build)
2828
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 {
@@ -89,7 +90,7 @@ publishing {
8990
developers {
9091
developer {
9192
name = 'OpenSearch'
92-
url = 'https://github.com/opensearch-project/dashboards-reports'
93+
url = 'https://github.com/opensearch-project/reporting'
9394
}
9495
}
9596
}
@@ -165,8 +166,10 @@ dependencies {
165166
implementation group: 'com.google.guava', name: 'guava', version: '31.0.1-jre'
166167
implementation "org.json:json:20180813"
167168
implementation group: 'com.github.wnameless.json', name: 'json-flattener', version: '0.15.1'
168-
// json-base is transitive dependencies by json-flattener
169+
// 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'
171+
implementation "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
172+
implementation "com.fasterxml.jackson.core:jackson-annotations:${jackson_version}"
170173
implementation 'org.jsoup:jsoup:1.15.3'
171174
implementation 'com.google.code.gson:gson:2.8.9'
172175
implementation "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"

0 commit comments

Comments
 (0)