Skip to content

Commit

Permalink
chore(deps): update all deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Sep 24, 2024
1 parent a5c85a7 commit cae2ae8
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion plugin-jdbc-clickhouse/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jar {
}

dependencies {
implementation("com.clickhouse:clickhouse-jdbc:0.6.0:all")
implementation 'com.clickhouse:clickhouse-jdbc:0.6.5'
implementation 'com.clickhouse:clickhouse-client:0.6.5'
implementation 'org.lz4:lz4-java:1.8.0'

implementation project(':plugin-jdbc')

compileOnly group: "io.kestra", name: "script", version: kestraVersion
Expand Down
2 changes: 1 addition & 1 deletion plugin-jdbc-pinot/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar {
}

dependencies {
implementation("org.apache.pinot:pinot-jdbc-client:1.1.0") {
implementation("org.apache.pinot:pinot-jdbc-client:1.2.0") {
exclude group: 'org.slf4j'
exclude group: 'com.fasterxml.jackson.core'
}
Expand Down
6 changes: 3 additions & 3 deletions plugin-jdbc-postgres/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jar {
}

dependencies {
jdbcDriver 'org.postgresql:postgresql:42.7.3'
jdbcDriver 'org.postgresql:postgresql:42.7.4'
implementation project(':plugin-jdbc')
api 'org.bouncycastle:bcprov-jdk18on:1.78'
api 'org.bouncycastle:bcpkix-jdk18on:1.78'
api 'org.bouncycastle:bcprov-jdk18on:1.78.1'
api 'org.bouncycastle:bcpkix-jdk18on:1.78.1'
api 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.3.0'

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down
2 changes: 1 addition & 1 deletion plugin-jdbc-snowflake/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar {
}

dependencies {
implementation("net.snowflake:snowflake-jdbc:3.18.0")
implementation("net.snowflake:snowflake-jdbc:3.19.0")
implementation project(':plugin-jdbc')

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down
4 changes: 2 additions & 2 deletions plugin-jdbc-sqlite/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jar {
dependencies {
jdbcDriver 'org.xerial:sqlite-jdbc:3.46.1.0'
implementation project(':plugin-jdbc')
api 'org.bouncycastle:bcprov-jdk18on:1.78'
api 'org.bouncycastle:bcpkix-jdk18on:1.78'
api 'org.bouncycastle:bcprov-jdk18on:1.78.1'
api 'org.bouncycastle:bcpkix-jdk18on:1.78.1'
api 'name.neuhalfen.projects.crypto.bouncycastle.openpgp:bouncy-gpg:2.3.0'

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down
2 changes: 1 addition & 1 deletion plugin-jdbc-sqlserver/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar {
}

dependencies {
implementation("com.microsoft.sqlserver:mssql-jdbc:12.8.0.jre11")
implementation("com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre11")
implementation project(':plugin-jdbc')

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down
2 changes: 1 addition & 1 deletion plugin-jdbc-trino/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar {
}

dependencies {
implementation("io.trino:trino-jdbc:454")
implementation("io.trino:trino-jdbc:458")
implementation project(':plugin-jdbc')

testImplementation project(':plugin-jdbc').sourceSets.test.output
Expand Down
2 changes: 1 addition & 1 deletion plugin-jdbc-vertica/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar {
}

dependencies {
jdbcDriver 'com.vertica.jdbc:vertica-jdbc:24.2.0-0'
jdbcDriver 'com.vertica.jdbc:vertica-jdbc:24.3.0-0'
implementation project(':plugin-jdbc')

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

0 comments on commit cae2ae8

Please sign in to comment.