diff options
| author | Krakenied <Krakenied1@gmail.com> | 2024-04-04 12:43:01 +0200 |
|---|---|---|
| committer | Leonardo Bishop <13875753+LMBishop@users.noreply.github.com> | 2024-04-30 17:38:22 +0100 |
| commit | 0047bd07e217b91f1aaf47f7c843abac70e14887 (patch) | |
| tree | 9ccd50498b63c38d5d7759f6767ebb81f9501ce6 /bukkit/build.gradle | |
| parent | 6380d8e81df88cb533a4809d1268f000e39a266f (diff) | |
Small refactor
Diffstat (limited to 'bukkit/build.gradle')
| -rw-r--r-- | bukkit/build.gradle | 10 |
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 |
