From a2d41d924f570624dff95571cd68a7c3a66aa08e Mon Sep 17 00:00:00 2001 From: Graham Date: Thu, 3 Sep 2020 10:52:20 +0100 Subject: [PATCH] Change cache's crypto dependency to an API dependency The XteaKey class is used in method signatures. Signed-off-by: Graham --- cache/build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache/build.gradle.kts b/cache/build.gradle.kts index 64eef48c..6fe6cd8f 100644 --- a/cache/build.gradle.kts +++ b/cache/build.gradle.kts @@ -4,11 +4,11 @@ plugins { } dependencies { + api(project(":crypto")) api("io.netty:netty-buffer:${Versions.netty}") implementation(project(":buffer")) implementation(project(":compress")) - implementation(project(":crypto")) implementation(project(":util")) implementation("it.unimi.dsi:fastutil:${Versions.fastutil}")