mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-03 17:39:31 +01:00
60 lines
2.0 KiB
Groovy
60 lines
2.0 KiB
Groovy
test {
|
|
useJUnitPlatform {
|
|
excludeTags 'dependency_checksum'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
|
|
compile project(':api')
|
|
compile 'org.checkerframework:checker-qual:3.8.0'
|
|
|
|
compileOnly project(':common:loader-utils')
|
|
|
|
compileOnly 'org.slf4j:slf4j-api:1.7.30'
|
|
compileOnly 'org.apache.logging.log4j:log4j-api:2.14.0'
|
|
|
|
// This is a special re-packaged version of 'net.kyori:adventure-*' for our own use.
|
|
// Don't use it in other projects, you want the net.kyori version instead.
|
|
// See here for more info: https://github.com/KyoriPowered/adventure
|
|
compile('me.lucko:adventure-api:4.0.0') {
|
|
exclude(module: 'checker-qual')
|
|
}
|
|
|
|
compile('net.kyori:event-api:3.0.0') {
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'guava')
|
|
}
|
|
compile 'com.google.code.gson:gson:2.7'
|
|
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.squareup.okio:okio:1.17.5'
|
|
compile 'net.bytebuddy:byte-buddy:1.10.9'
|
|
compile('org.spongepowered:configurate-core:3.7') {
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'guava')
|
|
}
|
|
compile('org.spongepowered:configurate-yaml:3.7') {
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'snakeyaml')
|
|
}
|
|
compile('org.spongepowered:configurate-gson:3.7') {
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'gson')
|
|
}
|
|
compile ('org.spongepowered:configurate-hocon:3.7') {
|
|
exclude(module: 'checker-qual')
|
|
}
|
|
compile('me.lucko.configurate:configurate-toml:3.7') {
|
|
exclude(module: 'toml4j')
|
|
}
|
|
compile 'com.zaxxer:HikariCP:4.0.2'
|
|
compile 'redis.clients:jedis:3.3.0'
|
|
compile 'com.rabbitmq:amqp-client:5.10.0'
|
|
compile 'org.mongodb:mongo-java-driver:3.12.2'
|
|
compile 'org.yaml:snakeyaml:1.23'
|
|
}
|