mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-11-30 03:08:01 +08:00
[fix-#11691] Add lz4-java in clickhouse datasource. (#11697)
This commit is contained in:
parent
d0d481d10f
commit
554562bfa9
@ -68,6 +68,7 @@
|
||||
<commons-io.version>2.11.0</commons-io.version>
|
||||
<oshi-core.version>6.1.1</oshi-core.version>
|
||||
<clickhouse-jdbc.version>0.1.52</clickhouse-jdbc.version>
|
||||
<lz4-java.version>1.4.0</lz4-java.version>
|
||||
<mssql-jdbc.version>6.1.0.jre8</mssql-jdbc.version>
|
||||
<presto-jdbc.version>0.238.1</presto-jdbc.version>
|
||||
<servlet-api.version>2.5</servlet-api.version>
|
||||
@ -610,6 +611,12 @@
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.lz4</groupId>
|
||||
<artifactId>lz4-java</artifactId>
|
||||
<version>${lz4-java.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-ldap</artifactId>
|
||||
|
@ -65,6 +65,11 @@
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.lz4</groupId>
|
||||
<artifactId>lz4-java</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.mockito</groupId>
|
||||
<artifactId>mockito-core</artifactId>
|
||||
|
@ -228,6 +228,7 @@ The text of each license is also included at licenses/LICENSE-[project].txt.
|
||||
caffeine 2.9.3: https://mvnrepository.com/artifact/com.github.ben-manes.caffeine/caffeine/2.9.3, Apache 2.0
|
||||
classmate 1.5.1: https://mvnrepository.com/artifact/com.fasterxml/classmate/1.5.1, Apache 2.0
|
||||
clickhouse-jdbc 0.1.52: https://mvnrepository.com/artifact/ru.yandex.clickhouse/clickhouse-jdbc/0.1.52, Apache 2.0
|
||||
lz4-java 1.4.0: https://mvnrepository.com/artifact/org.lz4/lz4-java/1.4.0, Apache 2.0
|
||||
commons-beanutils 1.9.4 https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils/1.9.4, Apache 2.0
|
||||
commons-cli 1.2: https://mvnrepository.com/artifact/commons-cli/commons-cli/1.2, Apache 2.0
|
||||
commons-codec 1.11: https://mvnrepository.com/artifact/commons-codec/commons-codec/1.11, Apache 2.0
|
||||
|
@ -32,6 +32,7 @@ checker-qual-3.5.0.jar
|
||||
classgraph-4.8.83.jar
|
||||
classmate-1.5.1.jar
|
||||
clickhouse-jdbc-0.1.52.jar
|
||||
lz4-java-1.4.0.jar
|
||||
commons-beanutils-1.9.4.jar
|
||||
commons-cli-1.2.jar
|
||||
commons-codec-1.11.jar
|
||||
|
Loading…
Reference in New Issue
Block a user