mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-12-29 12:37:40 +01:00
Update some dependency versions
This commit is contained in:
parent
38613e5f03
commit
fd712f131f
@ -2,7 +2,7 @@ dependencies {
|
||||
compile project(':api')
|
||||
|
||||
compile 'com.google.code.findbugs:jsr305:3.0.2'
|
||||
compile('net.kyori:text:1.11-1.6.2') {
|
||||
compile('net.kyori:text:1.11-1.6.4') {
|
||||
exclude(module: 'checker-qual')
|
||||
exclude(module: 'guava')
|
||||
exclude(module: 'gson')
|
||||
@ -14,8 +14,8 @@ dependencies {
|
||||
compile 'com.google.code.gson:gson:2.7'
|
||||
compile 'com.google.guava:guava:19.0'
|
||||
compile 'com.github.ben-manes.caffeine:caffeine:2.6.2'
|
||||
compile 'com.squareup.okhttp3:okhttp:3.10.0'
|
||||
compile 'com.squareup.okio:okio:1.14.1'
|
||||
compile 'com.squareup.okhttp3:okhttp:3.11.0'
|
||||
compile 'com.squareup.okio:okio:1.15.0'
|
||||
compile('me.lucko.configurate:configurate-core:3.5') {
|
||||
exclude(module: 'guava')
|
||||
}
|
||||
@ -31,6 +31,6 @@ dependencies {
|
||||
}
|
||||
compile 'com.zaxxer:HikariCP:3.2.0'
|
||||
compile 'redis.clients:jedis:2.9.0'
|
||||
compile 'org.mongodb:mongo-java-driver:3.7.1'
|
||||
compile 'org.yaml:snakeyaml:1.14'
|
||||
compile 'org.mongodb:mongo-java-driver:3.8.1'
|
||||
compile 'org.yaml:snakeyaml:1.22'
|
||||
}
|
||||
|
@ -62,8 +62,8 @@ public enum Dependency {
|
||||
TEXT(
|
||||
"net{}kyori",
|
||||
"text",
|
||||
"1.11-1.6.2",
|
||||
"08EGxwOXOdnxvlEZxtGWr3335b/7RIAGd6iHxp0KysQ=",
|
||||
"1.11-1.6.4",
|
||||
"V821j+n8AWhAvLhHjfXQ+/4284Gn4oXTYYfLkLjvs8o=",
|
||||
Relocation.of("text", "net{}kyori{}text")
|
||||
),
|
||||
EVENT(
|
||||
@ -83,15 +83,15 @@ public enum Dependency {
|
||||
OKIO(
|
||||
"com{}squareup{}" + RelocationHelper.OKIO_STRING,
|
||||
RelocationHelper.OKIO_STRING,
|
||||
"1.14.1",
|
||||
"InCF6E8zEsc1QxiVJF3nwKe29qUK30KayCVqFQoR7ck=",
|
||||
"1.15.0",
|
||||
"aT+jGafohDMAYCsgQCO3Z08Qbry1d/LdWAchK2YRi9I=",
|
||||
Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING)
|
||||
),
|
||||
OKHTTP(
|
||||
"com{}squareup{}" + RelocationHelper.OKHTTP3_STRING,
|
||||
"okhttp",
|
||||
"3.10.0",
|
||||
"Sso+VSr7HOtH+JVmhfYpWiduSfoD+QZvi2voO+xW+2Y=",
|
||||
"3.11.0",
|
||||
"4nx3QkSPgW2hyscrTKKDsNeSB0ngn13QrAF+QHFKLv4=",
|
||||
Relocation.allOf(
|
||||
Relocation.of(RelocationHelper.OKHTTP3_STRING, RelocationHelper.OKHTTP3_STRING),
|
||||
Relocation.of(RelocationHelper.OKIO_STRING, RelocationHelper.OKIO_STRING)
|
||||
@ -107,22 +107,22 @@ public enum Dependency {
|
||||
MARIADB_DRIVER(
|
||||
"org{}mariadb{}jdbc",
|
||||
"mariadb-java-client",
|
||||
"2.2.5",
|
||||
"kFfgzoMFrFKirAFh/DgobV7vAu9NhdnhZLHD4/PCddI=",
|
||||
"2.2.6",
|
||||
"TSj72P1Oojmw75SC9Wznfi7xl6YNUjqO48hOuYT8dv4=",
|
||||
Relocation.of("mariadb", "org{}mariadb{}jdbc")
|
||||
),
|
||||
MYSQL_DRIVER(
|
||||
"mysql",
|
||||
"mysql-connector-java",
|
||||
"5.1.46",
|
||||
"MSIIl2HmQD8C6Kge1KLWWi4QKXNGUboA8uqS2SD/ex4=",
|
||||
"8.0.12",
|
||||
"WwntuHAFEqUm6xCcMI6edS2es9kV9rHTO9vblwfth5k=",
|
||||
Relocation.of("mysql", "com{}mysql")
|
||||
),
|
||||
POSTGRESQL_DRIVER(
|
||||
"org{}postgresql",
|
||||
"postgresql",
|
||||
"9.4.1212",
|
||||
"DLKhWL4xrPIY4KThjI89usaKO8NIBkaHc/xECUsMNl0=",
|
||||
"42.2.4",
|
||||
"VaC2Pg/weQ5w+VzAt6JFMIW73IuQGKX6ypDj2ectMbg=",
|
||||
Relocation.of("postgresql", "org{}postgresql")
|
||||
),
|
||||
H2_DRIVER(
|
||||
@ -136,8 +136,8 @@ public enum Dependency {
|
||||
SQLITE_DRIVER(
|
||||
"org.xerial",
|
||||
"sqlite-jdbc",
|
||||
"3.21.0",
|
||||
"bglRaH4Y+vQFZV7TfOdsVLO3rJpauJ+IwjuRULAb45Y="
|
||||
"3.23.1",
|
||||
"1XCvY2or6Z4gvpUQ+2FaqBmyBZhXst1iWuy/93R2YzE="
|
||||
// we don't apply relocations to sqlite - it gets loaded via
|
||||
// an isolated classloader
|
||||
),
|
||||
@ -163,8 +163,8 @@ public enum Dependency {
|
||||
MONGODB_DRIVER(
|
||||
"org.mongodb",
|
||||
"mongo-java-driver",
|
||||
"3.7.1",
|
||||
"yllBCqAZwWCNUoMPR0JWilqhVA46+9F47wIcnYOcoy4=",
|
||||
"3.8.1",
|
||||
"gIIEEA9QdRUVcI+CVh+w/py0NlLOD+TBNQ/cjNav1p4=",
|
||||
Relocation.allOf(
|
||||
Relocation.of("mongodb", "com{}mongodb"),
|
||||
Relocation.of("bson", "org{}bson")
|
||||
@ -184,8 +184,8 @@ public enum Dependency {
|
||||
COMMONS_POOL_2(
|
||||
"org.apache.commons",
|
||||
"commons-pool2",
|
||||
"2.5.0",
|
||||
"IRhwQ8eZcdnISLlxhA3oQdoOXE3zDJI6lpFBMfue+Wk=",
|
||||
"2.6.0",
|
||||
"kpPYiPvZCVFrhwCkvZHpglS4sf4Vr7bD1jVsnWckut4=",
|
||||
Relocation.of("commonspool2", "org{}apache{}commons{}pool2")
|
||||
),
|
||||
CONFIGURATE_CORE(
|
||||
@ -212,8 +212,8 @@ public enum Dependency {
|
||||
SNAKEYAML(
|
||||
"org.yaml",
|
||||
"snakeyaml",
|
||||
"1.21",
|
||||
"5DywaD9wgEuDPfqlrAMv8Uugx1jUoenq62ZAUV34P68=",
|
||||
"1.22",
|
||||
"2rQd+SF15BNbBI4lyB5s//a+4Fv0wo8gAEhYfDKcNJ8=",
|
||||
Relocation.of("yaml", "org{}yaml{}snakeyaml")
|
||||
),
|
||||
CONFIGURATE_HOCON(
|
||||
|
@ -13,6 +13,13 @@ buildscript {
|
||||
apply plugin: "com.github.johnrengelman.shadow"
|
||||
apply plugin: "ninja.miserable.blossom"
|
||||
|
||||
repositories {
|
||||
maven {
|
||||
name 'velocity-repo'
|
||||
url 'https://repo.velocitypowered.com/snapshots/'
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile project(':common')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user