Skip to content

Commit a5fa039

Browse files
authored
Merge pull request #393 from ClickHouse/correcting-dependencies-on-msk
Adding additional dependencies for MSK
2 parents 9dda4bc + 2a85dd7 commit a5fa039

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

build.gradle.kts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ dependencies {
8888
annotationProcessor("org.projectlombok:lombok:1.18.32")
8989

9090
// To parse JSON response from ClickHouse to parse complex data types correctly
91-
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.0")
91+
implementation("com.fasterxml.jackson.core:jackson-core:2.17.1")
92+
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
93+
implementation("com.fasterxml.jackson.core:jackson-annotations:2.17.1")
9294

9395

9496
// TODO: need to remove ???
@@ -105,6 +107,9 @@ dependencies {
105107
clickhouseDependencies("com.clickhouse:clickhouse-client:${project.extra["clickHouseDriverVersion"]}")
106108
clickhouseDependencies("com.clickhouse:clickhouse-http-client:${project.extra["clickHouseDriverVersion"]}")
107109
clickhouseDependencies("com.google.code.gson:gson:2.10.1")
110+
clickhouseDependencies("com.fasterxml.jackson.core:jackson-core:2.17.1")
111+
clickhouseDependencies("com.fasterxml.jackson.core:jackson-databind:2.17.1")
112+
clickhouseDependencies("com.fasterxml.jackson.core:jackson-annotations:2.17.1")
108113

109114
// Unit Tests
110115
testImplementation(platform("org.junit:junit-bom:${project.extra["junitJupiterVersion"]}"))

0 commit comments

Comments
 (0)