diff --git a/NOTICE_binary.txt b/NOTICE_binary.txt
index c60d8ceb245..f6f11c298f6 100644
--- a/NOTICE_binary.txt
+++ b/NOTICE_binary.txt
@@ -100,7 +100,7 @@ and decompression library written by Adrien Grand. It can be obtained at:
* 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:
diff --git a/core-shaded/pom.xml b/core-shaded/pom.xml
index e16fac71ca3..2342f2faa60 100644
--- a/core-shaded/pom.xml
+++ b/core-shaded/pom.xml
@@ -78,7 +78,7 @@
true
- org.lz4
+ at.yawk.lz4
lz4-java
true
@@ -301,7 +301,7 @@
${snappy.version}
- org.lz4
+ at.yawk.lz4
lz4-java
${lz4.version}
diff --git a/core/pom.xml b/core/pom.xml
index accaeaf9c57..57330dc3949 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -67,7 +67,7 @@
true
- org.lz4
+ at.yawk.lz4
lz4-java
true
diff --git a/core/src/test/java/com/datastax/dse/driver/internal/core/insights/PlatformInfoFinderTest.java b/core/src/test/java/com/datastax/dse/driver/internal/core/insights/PlatformInfoFinderTest.java
index 80294ea6b7d..79818d906b6 100644
--- a/core/src/test/java/com/datastax/dse/driver/internal/core/insights/PlatformInfoFinderTest.java
+++ b/core/src/test/java/com/datastax/dse/driver/internal/core/insights/PlatformInfoFinderTest.java
@@ -77,7 +77,7 @@ public void should_find_dependencies_from_file() {
"com.fasterxml.jackson.core:jackson-annotations", withUnverifiedRuntimeVersion("2.8.11"));
expected.put("com.fasterxml.jackson.core:jackson-core", withUnverifiedRuntimeVersion("2.8.11"));
expected.put("io.netty:netty-handler", withUnverifiedRuntimeVersion("4.0.56.Final"));
- expected.put("org.lz4:lz4-java", withUnverifiedRuntimeVersionOptional("1.4.1"));
+ expected.put("at.yawk.lz4:lz4-java", withUnverifiedRuntimeVersionOptional("1.8.1"));
expected.put("org.hdrhistogram:HdrHistogram", withUnverifiedRuntimeVersionOptional("2.1.10"));
expected.put("com.github.jnr:jffi", withUnverifiedRuntimeVersion("1.2.16"));
expected.put("io.netty:netty-buffer", withUnverifiedRuntimeVersion("4.0.56.Final"));
diff --git a/core/src/test/resources/insights/test-dependencies.txt b/core/src/test/resources/insights/test-dependencies.txt
index 6cabe8b257d..e7158ef055e 100644
--- a/core/src/test/resources/insights/test-dependencies.txt
+++ b/core/src/test/resources/insights/test-dependencies.txt
@@ -17,7 +17,7 @@ The following files have been resolved:
com.fasterxml.jackson.core:jackson-core:jar:2.8.11:compile
org.hdrhistogram:HdrHistogram:jar:2.1.10:compile (optional)
org.ow2.asm:asm-tree:jar:5.0.3:compile
- org.lz4:lz4-java:jar:1.4.1:compile (optional)
+ at.yawk.lz4:lz4-java:jar:1.8.1:compile (optional)
io.netty:netty-transport:jar:4.0.56.Final:compile
io.dropwizard.metrics:metrics-core:jar:3.2.2:compile
io.netty:netty-common:jar:4.0.56.Final:compile
diff --git a/distribution/pom.xml b/distribution/pom.xml
index 1542a85161a..b7fbcd0391d 100644
--- a/distribution/pom.xml
+++ b/distribution/pom.xml
@@ -116,7 +116,7 @@
Java driver for Scylla and Apache Cassandra(R) ${project.version} API
- org.lz4
+ at.yawk.lz4
lz4-java
${lz4.version}
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml
index ededcc4ad34..813d8b0013e 100644
--- a/integration-tests/pom.xml
+++ b/integration-tests/pom.xml
@@ -123,7 +123,7 @@
test
- org.lz4
+ at.yawk.lz4
lz4-java
test
diff --git a/manual/core/compression/README.md b/manual/core/compression/README.md
index 9e84fde917d..5396784aede 100644
--- a/manual/core/compression/README.md
+++ b/manual/core/compression/README.md
@@ -46,7 +46,7 @@ datastax-java-driver {
Compression must be set before opening a session, it cannot be changed at runtime.
-Two algorithms are supported out of the box: [LZ4](https://github.com/jpountz/lz4-java) and
+Two algorithms are supported out of the box: [LZ4](https://github.com/yawkat/lz4-java) and
[Snappy](http://google.github.io/snappy/). The LZ4 implementation is a good first choice; it offers
fallback implementations in case native libraries fail to load and
[benchmarks](http://java-performance.info/performance-general-compression/) suggest that it offers
@@ -63,9 +63,9 @@ Dependency:
```xml
- org.lz4
+ at.yawk.lz4
lz4-java
- 1.4.1
+ 1.8.1
```
diff --git a/manual/core/integration/README.md b/manual/core/integration/README.md
index dc7dd07b8f2..af52bad6792 100644
--- a/manual/core/integration/README.md
+++ b/manual/core/integration/README.md
@@ -416,7 +416,7 @@ are not available on your platform, you can exclude the following dependency:
#### Compression libraries
-The driver supports compression with either [LZ4](https://github.com/jpountz/lz4-java) or
+The driver supports compression with either [LZ4](https://github.com/yawkat/lz4-java) or
[Snappy](http://google.github.io/snappy/).
These dependencies are optional; you have to add them explicitly in your application in order to
diff --git a/osgi-tests/pom.xml b/osgi-tests/pom.xml
index 22ffa958f1c..8fe12ec4f47 100644
--- a/osgi-tests/pom.xml
+++ b/osgi-tests/pom.xml
@@ -75,7 +75,7 @@
snappy-java
- org.lz4
+ at.yawk.lz4
lz4-java
diff --git a/osgi-tests/src/test/java/com/datastax/oss/driver/internal/osgi/support/BundleOptions.java b/osgi-tests/src/test/java/com/datastax/oss/driver/internal/osgi/support/BundleOptions.java
index 911d4e544f5..35ef8632211 100644
--- a/osgi-tests/src/test/java/com/datastax/oss/driver/internal/osgi/support/BundleOptions.java
+++ b/osgi-tests/src/test/java/com/datastax/oss/driver/internal/osgi/support/BundleOptions.java
@@ -117,7 +117,7 @@ public static CompositeOption jacksonBundles() {
public static CompositeOption lz4Bundle() {
return () ->
options(
- mavenBundle("org.lz4", "lz4-java").versionAsInProject(),
+ mavenBundle("at.yawk.lz4", "lz4-java").versionAsInProject(),
systemProperty("cassandra.compression").value("LZ4"));
}
diff --git a/pom.xml b/pom.xml
index 95dc99c7c81..38cc155fc14 100644
--- a/pom.xml
+++ b/pom.xml
@@ -75,7 +75,7 @@
1.9.12
1.1.10.8
- 1.8.1
+ 1.10.1
3.27.6
1.5.0
@@ -205,7 +205,7 @@
${snappy.version}
- org.lz4
+ at.yawk.lz4
lz4-java
${lz4.version}