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
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
4 changed files with 8 additions and 4 deletions

View File

@ -11,7 +11,7 @@ dependencies {
compile project(':common')
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('net.milkbowl.vault:VaultAPI:1.6') {
exclude(module: 'bukkit')

View File

@ -6,7 +6,7 @@ dependencies {
compile project(':common')
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'
// migration plugins

View File

@ -1,10 +1,14 @@
dependencies {
compile project(':api')
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') {
exclude(module: 'checker-qual')
}
compile('net.kyori:event-api:3.0.0') {
exclude(module: 'checker-qual')
exclude(module: 'guava')

View File

@ -25,7 +25,7 @@ dependencies {
exclude(module: 'configurate-gson')
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 {