1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-03 03:12:46 +02:00

Use ansi component serializer

This commit is contained in:
Luck
2023-08-05 10:09:30 +01:00
parent 6d8b6bd3fe
commit b8d1f52d7d
6 changed files with 19 additions and 141 deletions

View File

@@ -18,21 +18,21 @@ dependencies {
api 'com.google.guava:guava:31.1-jre'
api 'io.netty:netty-all:4.1.93.Final'
api('net.kyori:adventure-api:4.11.0') {
api('net.kyori:adventure-api:4.14.0') {
exclude(module: 'adventure-bom')
exclude(module: 'checker-qual')
exclude(module: 'annotations')
}
api('net.kyori:adventure-text-serializer-gson:4.11.0') {
api('net.kyori:adventure-text-serializer-gson:4.14.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'gson')
}
api('net.kyori:adventure-text-serializer-legacy:4.11.0') {
api('net.kyori:adventure-text-serializer-legacy:4.14.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
}
api('net.kyori:adventure-text-serializer-plain:4.11.0') {
api('net.kyori:adventure-text-serializer-plain:4.14.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
}
@@ -40,7 +40,14 @@ dependencies {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
}
api('net.kyori:ansi:1.0.1')
api('net.kyori:adventure-text-serializer-ansi:4.14.0') {
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'annotations')
}
api('net.kyori:ansi:1.0.3') {
exclude(module: 'annotations')
}
}
blossom {