From d2c26ca9a96a93fcc6d0f9961d359c4b26fe9a7a Mon Sep 17 00:00:00 2001 From: bridge Date: Tue, 26 Nov 2024 18:23:52 +0100 Subject: [PATCH] fix: deps --- plugin/build.gradle | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/plugin/build.gradle b/plugin/build.gradle index 1eec7c9..107581e 100644 --- a/plugin/build.gradle +++ b/plugin/build.gradle @@ -17,15 +17,15 @@ processResources { dependencies { compileOnly "me.clip:placeholderapi:2.11.6" // Placeholder support - compileOnly "com.github.retrooper:packetevents-spigot:2.6.0" // Packets + compileOnly "com.github.retrooper:packetevents-spigot:2.6.1-SNAPSHOT" // Packets implementation "com.google.code.gson:gson:2.11.0" // JSON parsing implementation "org.bstats:bstats-bukkit:3.0.2" // Plugin stats implementation "space.arim.dazzleconf:dazzleconf-ext-snakeyaml:1.2.1" // Configs implementation "lol.pyr:director-adventure:2.1.2" // Commands // Fancy text library - implementation "net.kyori:adventure-platform-bukkit:4.3.4" - implementation "net.kyori:adventure-text-minimessage:4.17.0" + compileOnly "net.kyori:adventure-platform-bukkit:4.3.4" + compileOnly "net.kyori:adventure-text-minimessage:4.17.0" implementation project(":api") } @@ -39,8 +39,6 @@ shadowJar { // When changing anything here remember to also update the bootstrap relocate "org.bstats", "lol.pyr.znpcsplus.libraries.bstats" - relocate "me.robertlit.spigotresources", "lol.pyr.znpcsplus.libraries.spigotresources" - relocate "net.kyori", "lol.pyr.znpcsplus.libraries.kyori" relocate "org.checkerframework", "lol.pyr.znpcsplus.libraries.checkerframework" relocate "com.google.gson", "lol.pyr.znpcsplus.libraries.gson" relocate "org.yaml.snakeyaml", "lol.pyr.znpcsplus.libraries.snakeyaml"