1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-08-28 08:39:48 +02:00

Update adventure

This commit is contained in:
Luck
2021-04-18 13:33:22 +01:00
parent 07f672ae1f
commit 0808392353
5 changed files with 37 additions and 22 deletions

View File

@@ -12,7 +12,11 @@ dependencies {
compileOnly project(':common:loader-utils') compileOnly project(':common:loader-utils')
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' // re: this artifact - see note in common/build.gradle compileOnly('me.lucko:adventure-platform-bukkit:4.7.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'adventure-nbt')
}
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

@@ -7,7 +7,11 @@ dependencies {
compileOnly project(':common:loader-utils') compileOnly project(':common:loader-utils')
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' // re: this artifact - see note in common/build.gradle compileOnly('me.lucko:adventure-platform-bungeecord:4.7.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'adventure-nbt')
}
compileOnly 'com.imaginarycode.minecraft:RedisBungee:0.4' compileOnly 'com.imaginarycode.minecraft:RedisBungee:0.4'
} }

View File

@@ -16,11 +16,26 @@ dependencies {
compileOnly 'org.slf4j:slf4j-api:1.7.30' compileOnly 'org.slf4j:slf4j-api:1.7.30'
compileOnly 'org.apache.logging.log4j:log4j-api:2.14.0' compileOnly 'org.apache.logging.log4j:log4j-api:2.14.0'
// This is a special re-packaged version of 'net.kyori:adventure-*' for our own use. compile('net.kyori:adventure-api:4.7.0') {
// Don't use it in other projects, you want the net.kyori version instead. exclude(module: 'adventure-bom')
// See here for more info: https://github.com/KyoriPowered/adventure
compile('me.lucko:adventure-api:4.0.0') {
exclude(module: 'checker-qual') exclude(module: 'checker-qual')
exclude(module: 'annotations')
}
compile('net.kyori:adventure-text-serializer-gson:4.7.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'gson')
}
compile('net.kyori:adventure-text-serializer-legacy:4.7.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
}
compile('net.kyori:adventure-text-serializer-plain:4.7.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
} }
compile('net.kyori:event-api:3.0.0') { compile('net.kyori:event-api:3.0.0') {

View File

@@ -63,36 +63,29 @@ public enum Dependency {
ADVENTURE( ADVENTURE(
"me{}lucko", "me{}lucko",
"adventure-api", "adventure-api",
"4.0.1", "4.7.0",
"6dKz0iM9MChLzU5MTLW5HSLFEmmNh/D9Bb6kzJvK/1E=", "6PddEv3Rpe4LuthaVjgG98feIBl4AQAkaYNLY9lldWA=",
Relocation.of("adventure", "net{}kyori{}adventure") Relocation.of("adventure", "net{}kyori{}adventure")
), ),
ADVENTURE_PLATFORM( ADVENTURE_PLATFORM(
"me{}lucko", "me{}lucko",
"adventure-platform-api", "adventure-platform-api",
"4.0.1", "4.7.0",
"ie3rz49jg5HU04mWe/f6lXjHt6L+S2SQp/x6YFbhxsc=", "CyYWxQuoN4vHte/5HuFDZEqrBGMi9Vv7uH3toJW1Z5Y=",
Relocation.of("adventure", "net{}kyori{}adventure") Relocation.of("adventure", "net{}kyori{}adventure")
), ),
ADVENTURE_PLATFORM_BUKKIT( ADVENTURE_PLATFORM_BUKKIT(
"me{}lucko", "me{}lucko",
"adventure-platform-bukkit", "adventure-platform-bukkit",
"4.0.1", "4.7.0",
"dVbYfUJqmde8jeuTvknCL9hbzqxybal00TELTzQgLbk=", "9H5MHWbJlZAHZR5zqqjW3QBU0GhJ1l9KgLGE4mKHDe8=",
Relocation.of("adventure", "net{}kyori{}adventure") Relocation.of("adventure", "net{}kyori{}adventure")
), ),
ADVENTURE_PLATFORM_BUNGEECORD( ADVENTURE_PLATFORM_BUNGEECORD(
"me{}lucko", "me{}lucko",
"adventure-platform-bungeecord", "adventure-platform-bungeecord",
"4.0.1", "4.7.0",
"4phi0TxNKVj5Lko63nlkrd5snIJcaU+cXUfAWsbCX1U=", "puM9PtfRzhp1Gq+ZxRAhVZqDblN1P2bb8FUnhLkMVsA=",
Relocation.of("adventure", "net{}kyori{}adventure")
),
ADVENTURE_PLATFORM_SPONGEAPI(
"me{}lucko",
"adventure-platform-spongeapi",
"4.0.1",
"6fjWuZMeJ6633RKuZh6sIlMyVIzryQoewONeei2nB+4=",
Relocation.of("adventure", "net{}kyori{}adventure") Relocation.of("adventure", "net{}kyori{}adventure")
), ),
EVENT( EVENT(

View File

@@ -25,7 +25,6 @@ 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' // re: this artifact - see note in common/build.gradle
} }
blossom { blossom {