From c198305b5e5ea1ed90db4b15e9ae913b1df6fbd1 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Thu, 8 Oct 2020 12:29:54 +0200 Subject: [PATCH] Add missing relocations --- Bukkit/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Bukkit/build.gradle.kts b/Bukkit/build.gradle.kts index 71ef9699a..d6e05868f 100644 --- a/Bukkit/build.gradle.kts +++ b/Bukkit/build.gradle.kts @@ -102,6 +102,7 @@ tasks.named("shadowJar") { include(dependency("com.intellectualsites:Pipeline")) relocate("net.kyori.adventure", "com.plotsquared.core.configuration.adventure") + relocate("net.kyori.examination", "com.plotsquared.core.configuration.examination") relocate("io.papermc.lib", "com.plotsquared.bukkit.paperlib") relocate("org.bstats", "com.plotsquared.metrics") relocate("com.sk89q.squirrelid", "com.plotsquared.squirrelid") @@ -110,6 +111,8 @@ tasks.named("shadowJar") { relocate("org.slf4j", "com.plotsquared.logging.slf4j") relocate("com.google.inject", "com.plotsquared.google") relocate("javax.inject", "com.plotsquared.core.inject.javax") + relocate("org.aopalliance", "com.plotsquared.core.aopalliance") + relocate("com.intellectualsites.services", "com.plotsquared.core.services") relocate("org.json", "com.plotsquared.json") { exclude("org/json/simple/**") }