Update lots of dependencies

This commit is contained in:
Luck 2021-04-18 18:20:54 +01:00
parent a68a5d91c4
commit 98adb046ee
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B
6 changed files with 64 additions and 65 deletions

View File

@ -2,7 +2,7 @@ group = 'net.luckperms'
project.version = '5.3' project.version = '5.3'
dependencies { dependencies {
compileOnly 'org.checkerframework:checker-qual:3.8.0' compileOnly 'org.checkerframework:checker-qual:3.12.0'
compileOnly 'org.jetbrains:annotations:20.1.0' compileOnly 'org.jetbrains:annotations:20.1.0'
} }

View File

@ -17,7 +17,7 @@ dependencies {
exclude(module: 'adventure-api') exclude(module: 'adventure-api')
exclude(module: 'adventure-nbt') exclude(module: 'adventure-nbt')
} }
compileOnly 'me.lucko:commodore:1.7' compileOnly 'me.lucko:commodore:1.9'
compileOnly('net.milkbowl.vault:VaultAPI:1.6') { compileOnly('net.milkbowl.vault:VaultAPI:1.6') {
exclude(module: 'bukkit') exclude(module: 'bukkit')
} }

View File

@ -357,7 +357,7 @@ public class LPBukkitPlugin extends AbstractLuckPermsPlugin {
try { try {
Class.forName(className); Class.forName(className);
return true; return true;
} catch (ClassNotFoundException var1) { } catch (ClassNotFoundException e) {
return false; return false;
} }
} }

View File

@ -203,7 +203,7 @@ public class LPBungeePlugin extends AbstractLuckPermsPlugin {
try { try {
Class.forName(className); Class.forName(className);
return true; return true;
} catch (ClassNotFoundException var1) { } catch (ClassNotFoundException e) {
return false; return false;
} }
} }

View File

@ -9,7 +9,7 @@ dependencies {
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.7.0' testCompile 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
compile project(':api') compile project(':api')
compile 'org.checkerframework:checker-qual:3.8.0' compile 'org.checkerframework:checker-qual:3.12.0'
compileOnly project(':common:loader-utils') compileOnly project(':common:loader-utils')
@ -42,33 +42,32 @@ dependencies {
exclude(module: 'checker-qual') exclude(module: 'checker-qual')
exclude(module: 'guava') exclude(module: 'guava')
} }
compile 'com.google.code.gson:gson:2.7' compile 'com.google.code.gson:gson:2.7'
compile 'com.google.guava:guava:19.0' compile 'com.google.guava:guava:19.0'
compile 'com.github.ben-manes.caffeine:caffeine:2.8.4'
compile 'com.squareup.okhttp3:okhttp:3.14.7' compile 'com.github.ben-manes.caffeine:caffeine:2.9.0'
compile 'com.squareup.okhttp3:okhttp:3.14.9'
compile 'com.squareup.okio:okio:1.17.5' compile 'com.squareup.okio:okio:1.17.5'
compile 'net.bytebuddy:byte-buddy:1.10.9' compile 'net.bytebuddy:byte-buddy:1.10.22'
compile('org.spongepowered:configurate-core:3.7') { compile('org.spongepowered:configurate-core:3.7.2') {
exclude(module: 'checker-qual') transitive = false
exclude(module: 'guava')
} }
compile('org.spongepowered:configurate-yaml:3.7') { compile('org.spongepowered:configurate-yaml:3.7.2') {
exclude(module: 'checker-qual') transitive = false
exclude(module: 'snakeyaml')
} }
compile('org.spongepowered:configurate-gson:3.7') { compile('org.spongepowered:configurate-gson:3.7.2') {
exclude(module: 'checker-qual') transitive = false
exclude(module: 'gson')
} }
compile ('org.spongepowered:configurate-hocon:3.7') { compile ('org.spongepowered:configurate-hocon:3.7.2') {
exclude(module: 'checker-qual') transitive = false
} }
compile('me.lucko.configurate:configurate-toml:3.7') { compile('me.lucko.configurate:configurate-toml:3.7') {
exclude(module: 'toml4j') transitive = false
} }
compile 'com.zaxxer:HikariCP:4.0.2' compile 'com.zaxxer:HikariCP:4.0.3'
compile 'redis.clients:jedis:3.3.0' compile 'redis.clients:jedis:3.5.2'
compile 'com.rabbitmq:amqp-client:5.10.0' compile 'com.rabbitmq:amqp-client:5.12.0'
compile 'org.mongodb:mongo-java-driver:3.12.2' compile 'org.mongodb:mongo-java-driver:3.12.8'
compile 'org.yaml:snakeyaml:1.23' compile 'org.yaml:snakeyaml:1.28'
} }

View File

@ -44,14 +44,14 @@ public enum Dependency {
ASM( ASM(
"org.ow2.asm", "org.ow2.asm",
"asm", "asm",
"7.1", "9.1",
"SrL6K20sycyx6qBeoynEB7R7E+0pFfYvjEuMyWJY1N4=" "zaTeRV+rSP8Ly3xItGOUR9TehZp6/DCglKmG8JNr66I="
), ),
ASM_COMMONS( ASM_COMMONS(
"org.ow2.asm", "org.ow2.asm",
"asm-commons", "asm-commons",
"7.1", "9.1",
"5VkEidjxmE2Fv+q9Oxc3TFnCiuCdSOxKDrvQGVns01g=" "r8sm3B/BLAxKma2mcJCN2C4Y38SIyvXuklRplrRwwAw="
), ),
JAR_RELOCATOR( JAR_RELOCATOR(
"me.lucko", "me.lucko",
@ -63,8 +63,8 @@ public enum Dependency {
ADVENTURE( ADVENTURE(
"me{}lucko", "me{}lucko",
"adventure-api", "adventure-api",
"4.7.0", "4.7.1",
"6PddEv3Rpe4LuthaVjgG98feIBl4AQAkaYNLY9lldWA=", "Kp0YN1he11ykhB9vSnUVHRq4/pTuOon+XuklDsSHsQw=",
Relocation.of("adventure", "net{}kyori{}adventure") Relocation.of("adventure", "net{}kyori{}adventure")
), ),
ADVENTURE_PLATFORM( ADVENTURE_PLATFORM(
@ -98,8 +98,8 @@ public enum Dependency {
CAFFEINE( CAFFEINE(
"com{}github{}ben-manes{}caffeine", "com{}github{}ben-manes{}caffeine",
"caffeine", "caffeine",
"2.8.4", "2.9.0",
"KV9YN5gQj6b507VJApJpPF5PkCon0DZqAi0T7Ln0lag=", "VFMotEO3XLbTHfRKfL3m36GlN72E/dzRFH9B5BJiX2o=",
Relocation.of("caffeine", "com{}github{}benmanes{}caffeine") Relocation.of("caffeine", "com{}github{}benmanes{}caffeine")
), ),
OKIO( OKIO(
@ -112,37 +112,37 @@ public enum Dependency {
OKHTTP( OKHTTP(
"com{}squareup{}" + RelocationHelper.OKHTTP3_STRING, "com{}squareup{}" + RelocationHelper.OKHTTP3_STRING,
"okhttp", "okhttp",
"3.14.7", "3.14.9",
"Yg1PpDxcal72JXYCBKiHmeHkpl4ceh2NoC4GHEy7gAA=", "JXD6tVUVy/iB16TO70n8UVSQvAJwV+Zmd2ooMkZa7KA=",
Relocation.of(RelocationHelper.OKHTTP3_STRING, RelocationHelper.OKHTTP3_STRING), Relocation.of(RelocationHelper.OKHTTP3_STRING, RelocationHelper.OKHTTP3_STRING),
Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING) Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING)
), ),
BYTEBUDDY( BYTEBUDDY(
"net{}bytebuddy", "net{}bytebuddy",
"byte-buddy", "byte-buddy",
"1.10.9", "1.10.22",
"B7nKbi+XDLA/SyVlHfHy/OJx1JG0TgQJgniHeG9pLU0=", "+TGtxDkxd6+lJExHJXqDlV4n/gR8QJN4xu2gkPsHSoQ=",
Relocation.of("bytebuddy", "net{}bytebuddy") Relocation.of("bytebuddy", "net{}bytebuddy")
), ),
COMMODORE( COMMODORE(
"me{}lucko", "me{}lucko",
"commodore", "commodore",
"1.7", "1.9",
"ncwmvNFfvyZf1Pa0v4fWyMR0Jxe1v1ZgXOiI255IX5Q=", "EhaLLqbgPnVYa61RumUc7l3r6wcGg2edDh2+PR8pvHI=",
Relocation.of("commodore", "me{}lucko{}commodore") Relocation.of("commodore", "me{}lucko{}commodore")
), ),
MARIADB_DRIVER( MARIADB_DRIVER(
"org{}mariadb{}jdbc", "org{}mariadb{}jdbc",
"mariadb-java-client", "mariadb-java-client",
"2.7.0", "2.7.2",
"ABURDun85Q01kf119r4yjDtl5ju9Fg9uV2nXyU3SEdw=", "o/Z3bfCELPZefxWFFQEtUwfalJ9mBCKC4e5EdN0Z9Eg=",
Relocation.of("mariadb", "org{}mariadb{}jdbc") Relocation.of("mariadb", "org{}mariadb{}jdbc")
), ),
MYSQL_DRIVER( MYSQL_DRIVER(
"mysql", "mysql",
"mysql-connector-java", "mysql-connector-java",
"8.0.22", "8.0.23",
"UBne+9EjFilel6bojyqbB/EYNFpOmCcQu6Iy5JmyL08=", "/31bQCr9OcEnh0cVBaM6MEEDsjjsG3pE6JNtMynadTU=",
Relocation.of("mysql", "com{}mysql") Relocation.of("mysql", "com{}mysql")
), ),
POSTGRESQL_DRIVER( POSTGRESQL_DRIVER(
@ -173,8 +173,8 @@ public enum Dependency {
HIKARI( HIKARI(
"com{}zaxxer", "com{}zaxxer",
"HikariCP", "HikariCP",
"4.0.2", "4.0.3",
"DP9czSdMnMysTbuoBK5cy9w5r2zR6rdaB09L/HfHncU=", "fAJK7/HBBjV210RTUT+d5kR9jmJNF/jifzCi6XaIxsk=",
Relocation.of("hikari", "com{}zaxxer{}hikari") Relocation.of("hikari", "com{}zaxxer{}hikari")
), ),
SLF4J_SIMPLE( SLF4J_SIMPLE(
@ -192,74 +192,74 @@ public enum Dependency {
MONGODB_DRIVER( MONGODB_DRIVER(
"org.mongodb", "org.mongodb",
"mongo-java-driver", "mongo-java-driver",
"3.12.2", "3.12.8",
"eMxHcEtasb/ubFCv99kE5rVZMPGmBei674ZTdjYe58w=", "92uqr4qaL3dbw5wrb8sQWQqFxpzr/Y/DhForeyg3taI=",
Relocation.of("mongodb", "com{}mongodb"), Relocation.of("mongodb", "com{}mongodb"),
Relocation.of("bson", "org{}bson") Relocation.of("bson", "org{}bson")
), ),
JEDIS( JEDIS(
"redis.clients", "redis.clients",
"jedis", "jedis",
"3.3.0", "3.5.2",
"HuTfz9xW/mi1fwVQ3xgPmd6qwTRMF/3fyMzw2LmOgy4=", "jX3340YaYjHFQN2sA+GCo33LB4FuIYKgQUPUv2MK/Xo=",
Relocation.of("jedis", "redis{}clients{}jedis"), Relocation.of("jedis", "redis{}clients{}jedis"),
Relocation.of("commonspool2", "org{}apache{}commons{}pool2") Relocation.of("commonspool2", "org{}apache{}commons{}pool2")
), ),
RABBITMQ( RABBITMQ(
"com{}rabbitmq", "com{}rabbitmq",
"amqp-client", "amqp-client",
"5.10.0", "5.12.0",
"z9/pvANy1mMAQb+VJtN+COybfxPeg/m9BgcfZRO1jcE=", "CxliwVWAnPKi5BwxCu1S1SGzx5fbhTk5JCKdBS27P2c=",
Relocation.of("rabbitmq", "com{}rabbitmq") Relocation.of("rabbitmq", "com{}rabbitmq")
), ),
COMMONS_POOL_2( COMMONS_POOL_2(
"org.apache.commons", "org.apache.commons",
"commons-pool2", "commons-pool2",
"2.8.0", "2.9.0",
"Xvqfu1SlixoSIFpfrFZfaYKr/rD/Rb28MYdI71/To/8=", "vJGbQmv6+zHsxF1mUqnxN0YkZdhJ+zhz142Qw/jTWwE=",
Relocation.of("commonspool2", "org{}apache{}commons{}pool2") Relocation.of("commonspool2", "org{}apache{}commons{}pool2")
), ),
CONFIGURATE_CORE( CONFIGURATE_CORE(
"org{}spongepowered", "org{}spongepowered",
"configurate-core", "configurate-core",
"3.7", "3.7.2",
"V+M3OFm+O0AHsao557kExxa27lYEX7UYE06G/zC/Kyc=", "XF2LzWLkSV0wyQRDt33I+gDlf3t2WzxH1h8JCZZgPp4=",
Relocation.of("configurate", "ninja{}leaping{}configurate") Relocation.of("configurate", "ninja{}leaping{}configurate")
), ),
CONFIGURATE_GSON( CONFIGURATE_GSON(
"org{}spongepowered", "org{}spongepowered",
"configurate-gson", "configurate-gson",
"3.7", "3.7.2",
"0JhMGX6mjY8MDCGGc7lrfoHvWbpGiE5R6N3nqJch+SU=", "9S/mp3Ig9De7NNd6+2kX+L4R90bHnAosSNVbFjrl7sM=",
Relocation.of("configurate", "ninja{}leaping{}configurate") Relocation.of("configurate", "ninja{}leaping{}configurate")
), ),
CONFIGURATE_YAML( CONFIGURATE_YAML(
"org{}spongepowered", "org{}spongepowered",
"configurate-yaml", "configurate-yaml",
"3.7", "3.7.2",
"14L0JiDuAfQovxkNySeaf9Kul3Nkl0OaW49Ow4ReV8E=", "OBfYn4nSMGZfVf2DoZhZq+G9TF1mODX/C5OOz/mkPmc=",
Relocation.of("configurate", "ninja{}leaping{}configurate") Relocation.of("configurate", "ninja{}leaping{}configurate")
), ),
SNAKEYAML( SNAKEYAML(
"org.yaml", "org.yaml",
"snakeyaml", "snakeyaml",
"1.23", "1.28",
"EwCfte3jzyvlqNDxYCFVrqoM5e9fk2aJK9JY2NPU0rE=", "NURqFCFDXUXkxqwN47U3hSfVzCRGwHGD4kRHcwzh//o=",
Relocation.of("yaml", "org{}yaml{}snakeyaml") Relocation.of("yaml", "org{}yaml{}snakeyaml")
), ),
CONFIGURATE_HOCON( CONFIGURATE_HOCON(
"org{}spongepowered", "org{}spongepowered",
"configurate-hocon", "configurate-hocon",
"3.7", "3.7.2",
"GYdqieCZVgPmoaIFjYN0YHuSVsHO7IsXZrwLAWqCgZM=", "GOORZlK1FKLzdIm7dKyyXtBdvk7Z89HARAd2H6NiWSY=",
Relocation.of("configurate", "ninja{}leaping{}configurate"), Relocation.of("configurate", "ninja{}leaping{}configurate"),
Relocation.of("hocon", "com{}typesafe{}config") Relocation.of("hocon", "com{}typesafe{}config")
), ),
HOCON_CONFIG( HOCON_CONFIG(
"com{}typesafe", "com{}typesafe",
"config", "config",
"1.4.0", "1.4.1",
"qtv9WlJFUb7vENP4kdMFuDuyfVRwPZpN56yioS2YR+I=", "TAqn4iPHXIhAxB/Bg9TNMRgUCh7lA+PgjOZu0nlMlI8=",
Relocation.of("hocon", "com{}typesafe{}config") Relocation.of("hocon", "com{}typesafe{}config")
), ),
CONFIGURATE_TOML( CONFIGURATE_TOML(