Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions licenses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1455,7 +1455,7 @@ notice: |
* LICENSE:
* license/LICENSE.lz4.txt (Apache License 2.0)
* HOMEPAGE:
* https://github.com/jpountz/lz4-java
* https://github.com/yawkat/lz4-java

This product optionally depends on 'lzma-java', a LZMA Java compression
and decompression library, which can be obtained at:
Expand Down Expand Up @@ -2464,8 +2464,9 @@ name: LZ4 Java
license_category: binary
module: java-core
license_name: Apache License version 2.0
version: 1.8.0
version: 1.8.1
libraries:
- at.yawk.lz4: lz4-java
- org.lz4: lz4-java

---
Expand Down Expand Up @@ -4584,7 +4585,7 @@ notice: |
* LICENSE:
* license/LICENSE.lz4.txt (Apache License 2.0)
* HOMEPAGE:
* https://github.com/jpountz/lz4-java
* https://github.com/yawkat/lz4-java

This product optionally depends on 'lzma-java', a LZMA Java compression
and decompression library, which can be obtained at:
Expand Down
2 changes: 1 addition & 1 deletion multi-stage-query/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.lz4</groupId>
<groupId>at.yawk.lz4</groupId>
<artifactId>lz4-java</artifactId>
<scope>provided</scope>
</dependency>
Expand Down
13 changes: 12 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -892,10 +892,21 @@
<artifactId>commons-dbcp2</artifactId>
<version>2.0.1</version>
</dependency>
<!-- this is relocated to at.yawk.lz4, but license checker script (the one that uses licenses.yaml)
complains about stuff (our dependencies) using org.lz4 package, so put this here even though our own
packaging doesn't use it directly anymore
-->
<dependency>
<groupId>org.lz4</groupId>
<artifactId>lz4-java</artifactId>
<version>1.8.0</version>
<version>1.8.1</version>
</dependency>
<!-- dependency:analyze complains if we don't declare this like this in our own packaging, since this is
what org.lz4 is relocated as -->
<dependency>
<groupId>at.yawk.lz4</groupId>
<artifactId>lz4-java</artifactId>
<version>1.8.1</version>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
Expand Down
2 changes: 1 addition & 1 deletion processing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@
<artifactId>compress-lzf</artifactId>
</dependency>
<dependency>
<groupId>org.lz4</groupId>
<groupId>at.yawk.lz4</groupId>
<artifactId>lz4-java</artifactId>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
<artifactId>elasticache-java-cluster-client</artifactId>
</dependency>
<dependency>
<groupId>org.lz4</groupId>
<groupId>at.yawk.lz4</groupId>
<artifactId>lz4-java</artifactId>
</dependency>
<dependency>
Expand Down
Loading