From 6b6780fb82b6860f87975df80f85c8d52b7d2bc2 Mon Sep 17 00:00:00 2001 From: Alec Theriault Date: Wed, 7 Apr 2021 14:24:02 -0700 Subject: [PATCH] Move from `net.jpountz.lz4:lz4` to `org.lz4:lz4-java` The former appears to have migrated to the latter, as per the advisory notice on . Another hint: `net.jpountz.lz4` hasn't been updated since 2014 while `org.lz4` is still seeing recent updates. --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 14a56f704..583a520da 100644 --- a/build.gradle +++ b/build.gradle @@ -58,8 +58,7 @@ dependencies { compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" - compile 'net.jpountz.lz4:lz4:1.3.0' - //TODO is there better version? + compile 'org.lz4:lz4-java:1.7.1' testCompile("io.kotlintest:kotlintest-runner-junit5:3.4.2") testCompile("org.junit.vintage:junit-vintage-engine:$junit_version")