1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-25 13:28:58 +02:00

Add note to build scripts about our repackaged version of the adventure library

This commit is contained in:
Luck
2020-10-16 00:17:42 +01:00
parent 9af397c2bc
commit 3b779dbbd3
4 changed files with 8 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ dependencies {
compile project(':common') compile project(':common')
compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT' compileOnly 'com.destroystokyo.paper:paper-api:1.15.2-R0.1-SNAPSHOT'
compileOnly 'me.lucko:adventure-platform-bukkit:4.0.0' compileOnly 'me.lucko:adventure-platform-bukkit:4.0.0' // re: this artifact - see note in common/build.gradle
compileOnly 'me.lucko:commodore:1.7' compileOnly 'me.lucko:commodore:1.7'
compileOnly('net.milkbowl.vault:VaultAPI:1.6') { compileOnly('net.milkbowl.vault:VaultAPI:1.6') {
exclude(module: 'bukkit') exclude(module: 'bukkit')

View File

@@ -6,7 +6,7 @@ dependencies {
compile project(':common') compile project(':common')
compileOnly 'net.md-5:bungeecord-api:1.15-SNAPSHOT' compileOnly 'net.md-5:bungeecord-api:1.15-SNAPSHOT'
compileOnly 'me.lucko:adventure-platform-bungeecord:4.0.0' compileOnly 'me.lucko:adventure-platform-bungeecord:4.0.0' // re: this artifact - see note in common/build.gradle
compileOnly 'com.imaginarycode.minecraft:RedisBungee:0.4' compileOnly 'com.imaginarycode.minecraft:RedisBungee:0.4'
// migration plugins // migration plugins

View File

@@ -1,10 +1,14 @@
dependencies { dependencies {
compile project(':api') compile project(':api')
compile 'org.checkerframework:checker-qual:2.5.5' compile 'org.checkerframework:checker-qual:2.5.5'
// This is a special re-packaged version of 'net.kyori:adventure-*' for our own use.
// Don't use it in other projects, you want the net.kyori version instead.
// See here for more info: https://github.com/KyoriPowered/adventure
compile('me.lucko:adventure-api:4.0.0') { compile('me.lucko:adventure-api:4.0.0') {
exclude(module: 'checker-qual') exclude(module: 'checker-qual')
} }
compile('net.kyori:event-api:3.0.0') { compile('net.kyori:event-api:3.0.0') {
exclude(module: 'checker-qual') exclude(module: 'checker-qual')
exclude(module: 'guava') exclude(module: 'guava')

View File

@@ -25,7 +25,7 @@ dependencies {
exclude(module: 'configurate-gson') exclude(module: 'configurate-gson')
exclude(module: 'configurate-yaml') exclude(module: 'configurate-yaml')
} }
compileOnly 'me.lucko:adventure-platform-spongeapi:4.0.0' compileOnly 'me.lucko:adventure-platform-spongeapi:4.0.0' // re: this artifact - see note in common/build.gradle
} }
blossom { blossom {