Fix issues with compressors not appearing at runtime

This commit is contained in:
James Seibel
2024-04-26 07:33:14 -05:00
parent 614884c29e
commit 7470455e50
+2 -1
View File
@@ -45,6 +45,7 @@ dependencies { // All of these dependencies are in Vanilla Minecraft, but we nee
shade("it.unimi.dsi:fastutil:${rootProject.fastutil_version}")
// Compression
// needs to be here and in core to prevent runtime/compiler errors
shade("org.lz4:lz4-java:${rootProject.lz4_version}") // LZ4
shade("com.github.luben:zstd-jni:${rootProject.zstd_version}") // Zstd
shade("org.tukaani:xz:${rootProject.xz_version}") // LZMA
@@ -56,7 +57,7 @@ dependencies { // All of these dependencies are in Vanilla Minecraft, but we nee
shade("io.netty:netty-all:${rootProject.netty_version}")
// NightConfig (includes Toml & Json)
// needed in both common and core
// needs to be here and in core to prevent runtime/compiler errors
shade("com.electronwill.night-config:toml:${rootProject.nightconfig_version}")
shade("com.electronwill.night-config:json:${rootProject.nightconfig_version}")