mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-31 18:11:44 +02:00
Bump adventure version
This commit is contained in:
@@ -11,7 +11,7 @@ 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.9.4') {
|
compileOnly('net.kyori:adventure-platform-bukkit:4.1.0') {
|
||||||
exclude(module: 'adventure-bom')
|
exclude(module: 'adventure-bom')
|
||||||
exclude(module: 'adventure-api')
|
exclude(module: 'adventure-api')
|
||||||
exclude(module: 'adventure-nbt')
|
exclude(module: 'adventure-nbt')
|
||||||
|
@@ -7,7 +7,7 @@ dependencies {
|
|||||||
compileOnly project(':common:loader-utils')
|
compileOnly project(':common:loader-utils')
|
||||||
|
|
||||||
compileOnly 'net.md-5:bungeecord-api:1.16-R0.4'
|
compileOnly 'net.md-5:bungeecord-api:1.16-R0.4'
|
||||||
compileOnly('me.lucko:adventure-platform-bungeecord:4.9.4') {
|
compileOnly('net.kyori:adventure-platform-bungeecord:4.1.0') {
|
||||||
exclude(module: 'adventure-bom')
|
exclude(module: 'adventure-bom')
|
||||||
exclude(module: 'adventure-api')
|
exclude(module: 'adventure-api')
|
||||||
exclude(module: 'adventure-nbt')
|
exclude(module: 'adventure-nbt')
|
||||||
|
@@ -21,24 +21,24 @@ 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'
|
||||||
|
|
||||||
api('net.kyori:adventure-api:4.9.3') {
|
api('net.kyori:adventure-api:4.11.0') {
|
||||||
exclude(module: 'adventure-bom')
|
exclude(module: 'adventure-bom')
|
||||||
exclude(module: 'checker-qual')
|
exclude(module: 'checker-qual')
|
||||||
exclude(module: 'annotations')
|
exclude(module: 'annotations')
|
||||||
}
|
}
|
||||||
|
|
||||||
api('net.kyori:adventure-text-serializer-gson:4.9.3') {
|
api('net.kyori:adventure-text-serializer-gson:4.11.0') {
|
||||||
exclude(module: 'adventure-bom')
|
exclude(module: 'adventure-bom')
|
||||||
exclude(module: 'adventure-api')
|
exclude(module: 'adventure-api')
|
||||||
exclude(module: 'gson')
|
exclude(module: 'gson')
|
||||||
}
|
}
|
||||||
|
|
||||||
api('net.kyori:adventure-text-serializer-legacy:4.9.3') {
|
api('net.kyori:adventure-text-serializer-legacy:4.11.0') {
|
||||||
exclude(module: 'adventure-bom')
|
exclude(module: 'adventure-bom')
|
||||||
exclude(module: 'adventure-api')
|
exclude(module: 'adventure-api')
|
||||||
}
|
}
|
||||||
|
|
||||||
api('net.kyori:adventure-text-serializer-plain:4.9.3') {
|
api('net.kyori:adventure-text-serializer-plain:4.11.0') {
|
||||||
exclude(module: 'adventure-bom')
|
exclude(module: 'adventure-bom')
|
||||||
exclude(module: 'adventure-api')
|
exclude(module: 'adventure-api')
|
||||||
}
|
}
|
||||||
|
@@ -64,29 +64,29 @@ public enum Dependency {
|
|||||||
ADVENTURE(
|
ADVENTURE(
|
||||||
"me{}lucko",
|
"me{}lucko",
|
||||||
"adventure-api",
|
"adventure-api",
|
||||||
"4.9.4",
|
"4.11.0",
|
||||||
"bh1cB0ZdzxstqRfVowKbgAZM16T/CtJ7oIJCaknbGeM=",
|
"7xrFaBbsTiQPZKBDzvDnTd8XIgOsHTy9qQICm3342GU=",
|
||||||
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.9.4",
|
"4.11.0",
|
||||||
"CZVyxNOi7ln7dgldfDs1m1M6d9w/bKG8Rp27qfAuTJw=",
|
"rFUSnKY6xEGCjgxqSl6/oJw2deCA/x834HlcCQEI1K4=",
|
||||||
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.9.4",
|
"4.11.0",
|
||||||
"JkA3GGkf3pADA3PACYfdVlAglstgzz+ajAxElMXXn6I=",
|
"usbxLJmMp+fb9cnnRNlHnOVSgd5NZfColiVlsjmMulo=",
|
||||||
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.9.4",
|
"4.11.0",
|
||||||
"a/p8/eIjbQnNlN5cJ/yIUjttZyJ/GRXgcsg8rhY7SwI=",
|
"+WUdRdZ6qkacw3ha/R3ayLx46soMywGe70Zmnw4yha8=",
|
||||||
Relocation.of("adventure", "net{}kyori{}adventure")
|
Relocation.of("adventure", "net{}kyori{}adventure")
|
||||||
),
|
),
|
||||||
EVENT(
|
EVENT(
|
||||||
|
Reference in New Issue
Block a user