From 76d7326237a84ec19f69d9b6827436cfd71bac02 Mon Sep 17 00:00:00 2001 From: Szum123321 Date: Tue, 3 Aug 2021 22:12:18 +0200 Subject: [PATCH] Locked parallel gzip version --- build.gradle | 4 ++-- gradle.properties | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 7186f2b..282ea69 100644 --- a/build.gradle +++ b/build.gradle @@ -51,8 +51,8 @@ dependencies { include "org.tukaani:xz:1.8" //Gzip compression, parallel, GITHUB - modImplementation 'com.github.shevek:parallelgzip:master-SNAPSHOT' - include 'com.github.shevek:parallelgzip:master-SNAPSHOT' + modImplementation "com.github.shevek:parallelgzip:${project.pgzip_commit_hash}" + include "com.github.shevek:parallelgzip:${project.pgzip_commit_hash}" // Lazy DFU makes the dev env start up much faster by loading DataFixerUpper lazily, which would otherwise take a long time. We rarely need it anyway. modRuntime("com.github.astei:lazydfu:${project.lazydfu_version}") { diff --git a/gradle.properties b/gradle.properties index 20e75da..f1a6bf9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -17,6 +17,9 @@ modmenu_version=2.0.4 #Lazy DFU for faster dev start lazydfu_version=0.1.2 +#Hash of commit form which parallel gzip will be build +pgzip_commit_hash=af5f5c297e735f3f2df7aa4eb0e19a5810b8aff6 + # Mod Properties mod_version = 2.2.0 maven_group = net.szum123321