Skip to content

Commit

Permalink
Merge pull request #393 from ClickHouse/correcting-dependencies-on-msk
Browse files Browse the repository at this point in the history
Adding additional dependencies for MSK
  • Loading branch information
Paultagoras authored May 23, 2024
2 parents 9dda4bc + 2a85dd7 commit a5fa039
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ dependencies {
annotationProcessor("org.projectlombok:lombok:1.18.32")

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


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

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

0 comments on commit a5fa039

Please sign in to comment.