From 942726f79e24483ae9aa93c1eeed236c6b80c6b3 Mon Sep 17 00:00:00 2001 From: Fallen_Breath Date: Wed, 23 Mar 2022 18:51:05 +0800 Subject: [PATCH] don't let world edit to introduce too much new libs --- build.gradle | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 592d8ef6..5bd89e9f 100644 --- a/build.gradle +++ b/build.gradle @@ -126,11 +126,13 @@ def projectMod = project(':' + settings.modname) { sparkLibs all { resolutionStrategy { - // force world edit to use the same log4j as minecraft 1.13.2 + // force world edit to use the same lib as minecraft 1.13.2 + force 'com.google.code.findbugs:jsr305:3.0.1' + force 'com.google.code.gson:gson:2.8.0' + force 'com.google.guava:guava:21.0' + force 'it.unimi.dsi:fastutil:8.2.1' force 'org.apache.logging.log4j:log4j-api:2.8.1' force 'org.apache.logging.log4j:log4j-core:2.8.1' - // force world edit to use the same guava as minecraft 1.13.2 - force 'com.google.guava:guava:21.0' } } }