diff --git a/build.gradle b/build.gradle index dfabebd6..66cbfef3 100644 --- a/build.gradle +++ b/build.gradle @@ -40,7 +40,7 @@ allprojects { configurations.configureEach { resolutionStrategy.capabilitiesResolution .withCapability("org.lz4:lz4-java") { - select("at.yawk.lz4:lz4-java:1.11.0") + select("at.yawk.lz4:lz4-java:1.11.1") because("ClickHouse JDBC expects at.yawk.lz4 implementation; avoid capability conflict") } } diff --git a/plugin-jdbc-clickhouse/build.gradle b/plugin-jdbc-clickhouse/build.gradle index 99d01f6e..6b88c228 100644 --- a/plugin-jdbc-clickhouse/build.gradle +++ b/plugin-jdbc-clickhouse/build.gradle @@ -21,7 +21,7 @@ dependencies { implementation 'org.apache.httpcomponents.core5:httpcore5' implementation 'org.apache.httpcomponents.core5:httpcore5-h2' implementation 'org.apache.httpcomponents.client5:httpclient5' - implementation 'at.yawk.lz4:lz4-java:1.11.0' + implementation 'at.yawk.lz4:lz4-java:1.11.1' implementation project(':plugin-jdbc')