Skip to content

Commit bf84fa5

Browse files
committed
Update lz4 library
1 parent d25ea4f commit bf84fa5

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

NOTICE_binary.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ and decompression library written by Adrien Grand. It can be obtained at:
100100
* LICENSE:
101101
* license/LICENSE.lz4.txt (Apache License 2.0)
102102
* HOMEPAGE:
103-
* https://github.com/jpountz/lz4-java
103+
* https://github.com/yawkat/lz4-java
104104

105105
This product optionally depends on 'lzma-java', a LZMA Java compression
106106
and decompression library, which can be obtained at:

core-shaded/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
<optional>true</optional>
7979
</dependency>
8080
<dependency>
81-
<groupId>org.lz4</groupId>
81+
<groupId>at.yawk.lz4</groupId>
8282
<artifactId>lz4-java</artifactId>
8383
<optional>true</optional>
8484
</dependency>
@@ -301,7 +301,7 @@
301301
<version>${snappy.version}</version>
302302
</additionalDependency>
303303
<additionalDependency>
304-
<groupId>org.lz4</groupId>
304+
<groupId>at.yawk.lz4</groupId>
305305
<artifactId>lz4-java</artifactId>
306306
<version>${lz4.version}</version>
307307
</additionalDependency>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
<optional>true</optional>
6868
</dependency>
6969
<dependency>
70-
<groupId>org.lz4</groupId>
70+
<groupId>at.yawk.lz4</groupId>
7171
<artifactId>lz4-java</artifactId>
7272
<optional>true</optional>
7373
</dependency>

core/src/test/java/com/datastax/dse/driver/internal/core/insights/PlatformInfoFinderTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void should_find_dependencies_from_file() {
7777
"com.fasterxml.jackson.core:jackson-annotations", withUnverifiedRuntimeVersion("2.8.11"));
7878
expected.put("com.fasterxml.jackson.core:jackson-core", withUnverifiedRuntimeVersion("2.8.11"));
7979
expected.put("io.netty:netty-handler", withUnverifiedRuntimeVersion("4.0.56.Final"));
80-
expected.put("org.lz4:lz4-java", withUnverifiedRuntimeVersionOptional("1.4.1"));
80+
expected.put("at.yawk.lz4:lz4-java", withUnverifiedRuntimeVersionOptional("1.8.1"));
8181
expected.put("org.hdrhistogram:HdrHistogram", withUnverifiedRuntimeVersionOptional("2.1.10"));
8282
expected.put("com.github.jnr:jffi", withUnverifiedRuntimeVersion("1.2.16"));
8383
expected.put("io.netty:netty-buffer", withUnverifiedRuntimeVersion("4.0.56.Final"));

core/src/test/resources/insights/test-dependencies.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The following files have been resolved:
1717
com.fasterxml.jackson.core:jackson-core:jar:2.8.11:compile
1818
org.hdrhistogram:HdrHistogram:jar:2.1.10:compile (optional)
1919
org.ow2.asm:asm-tree:jar:5.0.3:compile
20-
org.lz4:lz4-java:jar:1.4.1:compile (optional)
20+
at.yawk.lz4:lz4-java:jar:1.8.1:compile (optional)
2121
io.netty:netty-transport:jar:4.0.56.Final:compile
2222
io.dropwizard.metrics:metrics-core:jar:3.2.2:compile
2323
io.netty:netty-common:jar:4.0.56.Final:compile

distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@
116116
<windowtitle>Java driver for Scylla and Apache Cassandra(R) ${project.version} API</windowtitle>
117117
<additionalDependencies>
118118
<additionalDependency>
119-
<groupId>org.lz4</groupId>
119+
<groupId>at.yawk.lz4</groupId>
120120
<artifactId>lz4-java</artifactId>
121121
<version>${lz4.version}</version>
122122
</additionalDependency>

integration-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
<scope>test</scope>
124124
</dependency>
125125
<dependency>
126-
<groupId>org.lz4</groupId>
126+
<groupId>at.yawk.lz4</groupId>
127127
<artifactId>lz4-java</artifactId>
128128
<scope>test</scope>
129129
</dependency>

manual/core/compression/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ datastax-java-driver {
4646

4747
Compression must be set before opening a session, it cannot be changed at runtime.
4848

49-
Two algorithms are supported out of the box: [LZ4](https://github.com/jpountz/lz4-java) and
49+
Two algorithms are supported out of the box: [LZ4](https://github.com/yawkat/lz4-java) and
5050
[Snappy](http://google.github.io/snappy/). The LZ4 implementation is a good first choice; it offers
5151
fallback implementations in case native libraries fail to load and
5252
[benchmarks](http://java-performance.info/performance-general-compression/) suggest that it offers
@@ -63,9 +63,9 @@ Dependency:
6363

6464
```xml
6565
<dependency>
66-
<groupId>org.lz4</groupId>
66+
<groupId>at.yawk.lz4</groupId>
6767
<artifactId>lz4-java</artifactId>
68-
<version>1.4.1</version>
68+
<version>1.8.1</version>
6969
</dependency>
7070
```
7171

manual/core/integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ are not available on your platform, you can exclude the following dependency:
416416

417417
#### Compression libraries
418418

419-
The driver supports compression with either [LZ4](https://github.com/jpountz/lz4-java) or
419+
The driver supports compression with either [LZ4](https://github.com/yawkat/lz4-java) or
420420
[Snappy](http://google.github.io/snappy/).
421421

422422
These dependencies are optional; you have to add them explicitly in your application in order to

osgi-tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<artifactId>snappy-java</artifactId>
7676
</dependency>
7777
<dependency>
78-
<groupId>org.lz4</groupId>
78+
<groupId>at.yawk.lz4</groupId>
7979
<artifactId>lz4-java</artifactId>
8080
</dependency>
8181
<dependency>

0 commit comments

Comments
 (0)