LuckPerms/common/build.gradle
2020-08-01 11:08:46 +01:00

48 lines
1.6 KiB
Groovy

dependencies {
compile project(':api')
compile 'org.checkerframework:checker-qual:2.5.5'
compile('net.kyori:text-api:3.0.4') {
exclude(module: 'checker-qual')
}
compile('net.kyori:text-serializer-legacy:3.0.4') {
exclude(module: 'text-api')
}
compile('net.kyori:text-serializer-gson:3.0.4') {
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.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:3.4.5'
compile 'redis.clients:jedis:3.3.0'
compile 'org.mongodb:mongo-java-driver:3.12.2'
compile 'org.yaml:snakeyaml:1.23'
}