Skip to content

Commit 670d86f

Browse files
committed
fixed missing lz4 dependency
1 parent 9503e2a commit 670d86f

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

clickhouse-jdbc/pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@
4545
<groupId>org.apache.commons</groupId>
4646
<artifactId>commons-compress</artifactId>
4747
</dependency>
48-
49-
<dependency>
50-
<groupId>org.lz4</groupId>
51-
<artifactId>lz4-java</artifactId>
52-
</dependency>
5348
<dependency>
5449
<groupId>com.google.code.gson</groupId>
5550
<artifactId>gson</artifactId>
@@ -90,7 +85,7 @@
9085
<dependency>
9186
<groupId>org.lz4</groupId>
9287
<artifactId>lz4-java</artifactId>
93-
<scope>provided</scope>
88+
<version>${lz4.version}</version>
9489
</dependency>
9590
<dependency>
9691
<groupId>com.github.luben</groupId>

jdbc-v2/pom.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,7 @@
5050
<artifactId>slf4j-api</artifactId>
5151
<version>${slf4j.version}</version>
5252
</dependency>
53-
<dependency>
54-
<groupId>org.lz4</groupId>
55-
<artifactId>lz4-java</artifactId>
56-
<optional>true</optional>
57-
</dependency>
53+
5854
<dependency>
5955
<groupId>com.google.code.gson</groupId>
6056
<artifactId>gson</artifactId>
@@ -63,7 +59,7 @@
6359
<dependency>
6460
<groupId>org.lz4</groupId>
6561
<artifactId>lz4-java</artifactId>
66-
<scope>provided</scope>
62+
<version>${lz4.version}</version>
6763
</dependency>
6864
<dependency>
6965
<groupId>com.github.luben</groupId>

0 commit comments

Comments
 (0)