Skip to content

Commit

Permalink
fix(druid): exclude Jackson libs as they are provided by Kestra
Browse files Browse the repository at this point in the history
It avoid dependency divergence between the Druid version and the version used in Kestra
  • Loading branch information
loicmathieu committed Oct 8, 2024
1 parent 504c457 commit 0932f1b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugin-jdbc-druid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jar {
}

dependencies {
implementation("org.apache.calcite.avatica:avatica-core:1.25.0")
implementation("org.apache.calcite.avatica:avatica-core:1.25.0"){
// exclude libraries already provided by Kestra
exclude group: 'com.fasterxml.jackson.core'
}
implementation project(':plugin-jdbc')

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down

0 comments on commit 0932f1b

Please sign in to comment.