aboutsummaryrefslogtreecommitdiffstats
path: root/bukkit/build.gradle
diff options
context:
space:
mode:
authorKrakenied <Krakenied1@gmail.com>2024-02-20 05:50:21 +0100
committerLeonardo Bishop <13875753+LMBishop@users.noreply.github.com>2024-02-22 16:31:48 +0000
commitd2b5759d7eb09bc997222288c45ccd0429160f1c (patch)
tree9a8bde8d25eb1ecb9db102d054ef9edbc2f9e266 /bukkit/build.gradle
parent2c81c6cecca916dbe603153e00fc55d5b4a89b54 (diff)
Fix CraftBukkit hex color adapter compatibility
Diffstat (limited to 'bukkit/build.gradle')
-rw-r--r--bukkit/build.gradle7
1 files changed, 7 insertions, 0 deletions
diff --git a/bukkit/build.gradle b/bukkit/build.gradle
index c9c2abe9..3c927341 100644
--- a/bukkit/build.gradle
+++ b/bukkit/build.gradle
@@ -58,10 +58,12 @@ dependencies {
// Paper
compileOnly('io.papermc.paper:paper-api:1.20.2-R0.1-SNAPSHOT') {
exclude(group: 'it.unimi.dsi', module: 'fastutil') // exclude fastutil just to don't use it (for 1.8 support)
+ exclude(group: 'net.md-5', module: 'bungeecord-chat')
}
// Folia
compileOnly('dev.folia:folia-api:1.20.1-R0.1-SNAPSHOT') {
exclude(group: 'it.unimi.dsi', module: 'fastutil') // exclude fastutil just to don't use it (for 1.8 support)
+ exclude(group: 'net.md-5', module: 'bungeecord-chat')
}
// ASkyBlock
compileOnly('com.wasteofplastic:askyblock:3.0.9.4') { transitive = false }
@@ -132,6 +134,8 @@ dependencies {
implementation 'org.slf4j:slf4j-nop:1.7.36'
// hppc
implementation 'com.carrotsearch:hppc:0.9.1'
+ // bungeecord-chat
+ implementation('net.md-5:bungeecord-chat:1.20-R0.2') { transitive = false }
}
tasks.build {
@@ -139,10 +143,13 @@ tasks.build {
}
shadowJar {
+ exclude('mojang-translations/*')
+
relocate 'org.bstats', 'com.leonardobishop.quests.libs.bstats'
relocate 'com.zaxxer.hikari', 'com.leonardobishop.quests.libs.hikari'
relocate 'org.slf4j', 'com.leonardobishop.quests.libs.slf4j'
relocate 'com.carrotsearch.hppc', 'com.leonardobishop.quests.libs.hppc'
+ relocate 'net.md_5.bungee', 'com.leonardobishop.quests.libs.bungee'
minimize {
exclude(dependency('org.bstats:.*:.*'))