Skip to content

Commit cc34ae8

Browse files
authored
Add jackson-databind and jackson-annotations (#650)
Signed-off-by: Rupal Mahajan <[email protected]>
1 parent b878543 commit cc34ae8

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
}
@@ -164,8 +165,10 @@ dependencies {
164165
compileOnly "${group}:opensearch-job-scheduler-spi:${job_scheduler_version}"
165166
implementation "org.json:json:20180813"
166167
implementation group: 'com.github.wnameless.json', name: 'json-flattener', version: '0.15.1'
167-
// json-base is transitive dependencies by json-flattener
168+
// json-base, jackson-databind, jackson-annotations are transitive dependencies by json-flattener
168169
implementation group: 'com.github.wnameless.json', name: 'json-base', version: '2.2.1'
170+
implementation "com.fasterxml.jackson.core:jackson-databind:${jackson_version}"
171+
implementation "com.fasterxml.jackson.core:jackson-annotations:${jackson_version}"
169172
implementation 'org.jsoup:jsoup:1.15.3'
170173
implementation 'com.google.code.gson:gson:2.8.9'
171174
implementation "org.jetbrains.kotlin:kotlin-test:${kotlin_version}"

0 commit comments

Comments
 (0)