Skip to content

Commit 9cd7a64

Browse files
committed
fixed issue with lz4 dependency conflict
1 parent 8f301da commit 9cd7a64

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

core/ingest/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,10 @@
7575
<groupId>com.sun.jmx</groupId>
7676
<artifactId>jmxri</artifactId>
7777
</exclusion>
78+
<exclusion>
79+
<groupId>net.jpountz.lz4</groupId>
80+
<artifactId>lz4</artifactId>
81+
</exclusion>
7882
</exclusions>
7983
</dependency>
8084
<dependency>

pom.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -761,12 +761,7 @@
761761
<scope>${geotools.scope}</scope>
762762
</dependency>
763763
<dependency>
764-
<groupId>net.jpountz.lz4</groupId>
765-
<artifactId>lz4</artifactId>
766-
<version>1.4.0</version>
767-
</dependency>
768-
<dependency>
769-
<groupId>net.jpountz.lz4</groupId>
764+
<groupId>org.lz4</groupId>
770765
<artifactId>lz4-java</artifactId>
771766
<version>1.4.0</version>
772767
</dependency>

test/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@
103103
<groupId>org.mortbay.jetty</groupId>
104104
<artifactId>servlet-api</artifactId>
105105
</exclusion>
106+
<exclusion>
107+
<groupId>net.jpountz.lz4</groupId>
108+
<artifactId>lz4</artifactId>
109+
</exclusion>
106110
</exclusions>
107111
</dependency>
108112
<dependency>
@@ -340,6 +344,10 @@
340344
<groupId>org.hibernate</groupId>
341345
<artifactId>hibernate-validator</artifactId>
342346
</exclusion>
347+
<exclusion>
348+
<groupId>net.jpountz.lz4</groupId>
349+
<artifactId>lz4</artifactId>
350+
</exclusion>
343351
</exclusions>
344352
</dependency>
345353
<dependency>

0 commit comments

Comments
 (0)