Skip to content

Commit 12f6f31

Browse files
authored
update lz4-java to 1.8.1 (#18804)
1 parent b44f5db commit 12f6f31

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

licenses.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,7 +1455,7 @@ notice: |
14551455
* LICENSE:
14561456
* license/LICENSE.lz4.txt (Apache License 2.0)
14571457
* HOMEPAGE:
1458-
* https://github.com/jpountz/lz4-java
1458+
* https://github.com/yawkat/lz4-java
14591459
14601460
This product optionally depends on 'lzma-java', a LZMA Java compression
14611461
and decompression library, which can be obtained at:
@@ -2464,8 +2464,9 @@ name: LZ4 Java
24642464
license_category: binary
24652465
module: java-core
24662466
license_name: Apache License version 2.0
2467-
version: 1.8.0
2467+
version: 1.8.1
24682468
libraries:
2469+
- at.yawk.lz4: lz4-java
24692470
- org.lz4: lz4-java
24702471

24712472
---
@@ -4584,7 +4585,7 @@ notice: |
45844585
* LICENSE:
45854586
* license/LICENSE.lz4.txt (Apache License 2.0)
45864587
* HOMEPAGE:
4587-
* https://github.com/jpountz/lz4-java
4588+
* https://github.com/yawkat/lz4-java
45884589
45894590
This product optionally depends on 'lzma-java', a LZMA Java compression
45904591
and decompression library, which can be obtained at:

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: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,10 +892,21 @@
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>
898-
<version>1.8.0</version>
902+
<version>1.8.1</version>
903+
</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>
899910
</dependency>
900911
<dependency>
901912
<groupId>org.xerial.snappy</groupId>

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)