LuckPerms/common/build.gradle
2019-11-09 22:34:12 +00:00

42 lines
1.4 KiB
Groovy

dependencies {
compile project(':api')
compile 'org.checkerframework:checker-qual:2.5.5'
compile('net.kyori:text-api:3.0.2') {
exclude(module: 'checker-qual')
}
compile('net.kyori:text-serializer-legacy:3.0.2') {
exclude(module: 'text-api')
}
compile('net.kyori:text-serializer-gson:3.0.2') {
exclude(module: 'text-api')
exclude(module: 'gson')
}
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.0'
compile 'com.squareup.okhttp3:okhttp:4.2.2'
compile 'com.squareup.okio:okio:2.2.2'
compile('me.lucko.configurate:configurate-core:3.5') {
exclude(module: 'guava')
}
compile('me.lucko.configurate:configurate-yaml:3.5') {
exclude(module: 'snakeyaml')
}
compile('me.lucko.configurate:configurate-gson:3.5') {
exclude(module: 'gson')
}
compile 'me.lucko.configurate:configurate-hocon:3.5'
compile('me.lucko.configurate:configurate-toml:3.5') {
exclude(module: 'toml4j')
}
compile 'com.zaxxer:HikariCP:3.4.1'
compile 'redis.clients:jedis:2.10.2'
compile 'org.mongodb:mongo-java-driver:3.11.1'
compile 'org.yaml:snakeyaml:1.23'
}