aboutsummaryrefslogtreecommitdiffstats
path: root/bukkit/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'bukkit/build.gradle')
-rw-r--r--bukkit/build.gradle10
1 files changed, 7 insertions, 3 deletions
diff --git a/bukkit/build.gradle b/bukkit/build.gradle
index b2910da6..8341707b 100644
--- a/bukkit/build.gradle
+++ b/bukkit/build.gradle
@@ -56,13 +56,17 @@ repositories {
dependencies {
compileOnly project(':common')
// 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)
+ compileOnly('io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT') {
+ // exclude libraries not available in 1.8
+ exclude(group: 'it.unimi.dsi', module: 'fastutil')
+ exclude(group: 'org.apache.maven', module: 'maven-resolver-provider')
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 libraries not available in 1.8
+ exclude(group: 'it.unimi.dsi', module: 'fastutil')
+ exclude(group: 'org.apache.maven', module: 'maven-resolver-provider')
exclude(group: 'net.md-5', module: 'bungeecord-chat')
}
// ASkyBlock