From 9bae9732c619f138bd22d748f1ead730cb405aef Mon Sep 17 00:00:00 2001 From: LindaJuffermans Date: Mon, 17 Jan 2022 16:18:23 +0100 Subject: [PATCH] Changed ProtocolLib repo and build method because it's broken. Based on https://github.com/dmulloy2/ProtocolLib/issues/1047 --- build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 1fc95b08..47811958 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ allprojects { } maven { // ProtocolLib - url "http://repo.dmulloy2.net/nexus/repository/public/" + url = 'https://jitpack.io' } // PaperLib maven { @@ -72,7 +72,9 @@ dependencies { shadow 'net.wesjd:anvilgui:1.5.3-SNAPSHOT' compile name: 'BiomeMapping-1.3' compile "io.papermc:paperlib:1.0.5" - shadow 'com.comphenix.protocol:ProtocolLib:4.4.0' + compileOnly(group: "com.github.dmulloy2", name: "ProtocolLib", version: "4.5.1"){ + exclude(group: "com.comphenix.executors") + } compile project('Support-WorldEdit-6') compile project('Support-WorldEdit-7') }