Skip to content

Commit 5415665

Browse files
committed
try this
1 parent 36f1c8e commit 5415665

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

multi-stage-query/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
<scope>provided</scope>
166166
</dependency>
167167
<dependency>
168-
<groupId>org.lz4</groupId>
168+
<groupId>at.yawk.lz4</groupId>
169169
<artifactId>lz4-java</artifactId>
170170
<scope>provided</scope>
171171
</dependency>

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -892,11 +892,22 @@
892892
<artifactId>commons-dbcp2</artifactId>
893893
<version>2.0.1</version>
894894
</dependency>
895+
<!-- this is relocated to at.yawk.lz4, but license checker script (the one that uses licenses.yaml)
896+
complains about stuff (our dependencies) using org.lz4 package, so put this here even though our own
897+
packaging doesn't use it directly anymore
898+
-->
895899
<dependency>
896900
<groupId>org.lz4</groupId>
897901
<artifactId>lz4-java</artifactId>
898902
<version>1.8.1</version>
899903
</dependency>
904+
<!-- dependency:analyze complains if we don't declare this like this in our own packaging, since this is
905+
what org.lz4 is relocated as -->
906+
<dependency>
907+
<groupId>at.yawk.lz4</groupId>
908+
<artifactId>lz4-java</artifactId>
909+
<version>1.8.1</version>
910+
</dependency>
900911
<dependency>
901912
<groupId>org.xerial.snappy</groupId>
902913
<artifactId>snappy-java</artifactId>

processing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@
247247
<artifactId>compress-lzf</artifactId>
248248
</dependency>
249249
<dependency>
250-
<groupId>org.lz4</groupId>
250+
<groupId>at.yawk.lz4</groupId>
251251
<artifactId>lz4-java</artifactId>
252252
</dependency>
253253
<dependency>

server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
<artifactId>elasticache-java-cluster-client</artifactId>
157157
</dependency>
158158
<dependency>
159-
<groupId>org.lz4</groupId>
159+
<groupId>at.yawk.lz4</groupId>
160160
<artifactId>lz4-java</artifactId>
161161
</dependency>
162162
<dependency>

0 commit comments

Comments
 (0)