1
0
mirror of https://github.com/lucko/LuckPerms.git synced 2025-09-02 10:52:37 +02:00

Downgrade jedis and h2

This commit is contained in:
Luck
2025-06-01 18:48:34 +01:00
parent 9538cb9dad
commit 8ab9910ef8
7 changed files with 36 additions and 304 deletions

View File

@@ -14,9 +14,9 @@ dependencies {
api 'net.minecrell:terminalconsoleappender:1.3.0'
api 'org.jline:jline-terminal-jansi:3.20.0'
api 'com.google.code.gson:gson:2.9.0'
api 'com.google.guava:guava:31.1-jre'
api 'io.netty:netty-all:4.1.93.Final'
api 'com.google.code.gson:gson:2.13.1'
api 'com.google.guava:guava:33.4.8-jre'
api 'io.netty:netty-all:4.2.1.Final'
api('net.kyori:adventure-api:4.21.0') {
exclude(module: 'adventure-bom')

View File

@@ -25,30 +25,29 @@ dependencies {
compileOnly project(':common:loader-utils')
compileOnly project(':standalone:app')
compileOnly 'org.spongepowered:configurate-yaml:3.7.2'
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.0'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.1'
testImplementation "org.testcontainers:junit-jupiter:1.18.3"
testImplementation 'org.mockito:mockito-core:4.11.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.11.0'
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'org.testcontainers:junit-jupiter:1.21.1'
testImplementation 'org.mockito:mockito-core:5.18.0'
testImplementation 'org.mockito:mockito-junit-jupiter:5.18.0'
testImplementation 'org.awaitility:awaitility:4.3.0'
testImplementation 'com.zaxxer:HikariCP:4.0.3'
testImplementation 'redis.clients:jedis:4.4.3'
testImplementation 'io.nats:jnats:2.16.4'
testImplementation 'com.rabbitmq:amqp-client:5.12.0'
testImplementation 'org.postgresql:postgresql:42.6.0'
testImplementation 'com.zaxxer:HikariCP:6.3.0'
testImplementation 'redis.clients:jedis:5.2.0'
testImplementation 'io.nats:jnats:2.21.1'
testImplementation 'com.rabbitmq:amqp-client:5.25.0'
testImplementation 'org.postgresql:postgresql:42.7.6'
testImplementation 'com.h2database:h2:2.1.214'
testImplementation 'org.xerial:sqlite-jdbc:3.42.0.0'
testImplementation 'mysql:mysql-connector-java:8.0.23'
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.1.3'
testImplementation 'org.mongodb:mongodb-driver-legacy:4.5.0'
testImplementation 'org.xerial:sqlite-jdbc:3.49.1.0'
testImplementation 'com.mysql:mysql-connector-j:9.3.0'
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.2'
testImplementation 'org.mongodb:mongodb-driver-legacy:5.5.0'
testImplementation 'me.lucko.configurate:configurate-toml:3.7'
testImplementation 'org.spongepowered:configurate-hocon:3.7.2'
testImplementation 'org.yaml:snakeyaml:1.28'
testImplementation 'net.luckperms:rest-api-java-client:0.1-SNAPSHOT'
testImplementation 'org.spongepowered:configurate-yaml:3.7.3'
testImplementation 'org.spongepowered:configurate-hocon:3.7.3'
testImplementation 'org.yaml:snakeyaml:1.22'
testImplementation 'net.luckperms:rest-api-java-client:0.1'
testImplementation project(':standalone:app')
testImplementation project(':common:loader-utils')