2018-08-10 21:39:29 +02:00
|
|
|
dependencies {
|
2019-08-26 19:00:02 +02:00
|
|
|
compile project(':api')
|
2018-08-10 21:39:29 +02:00
|
|
|
|
2018-09-19 21:40:18 +02:00
|
|
|
compile 'org.checkerframework:checker-qual:2.5.5'
|
2020-06-10 21:41:39 +02:00
|
|
|
compile('net.kyori:text-api:3.0.4') {
|
2018-08-10 21:39:29 +02:00
|
|
|
exclude(module: 'checker-qual')
|
2019-05-07 01:23:40 +02:00
|
|
|
}
|
2020-06-10 21:41:39 +02:00
|
|
|
compile('net.kyori:text-serializer-legacy:3.0.4') {
|
2019-05-07 01:23:40 +02:00
|
|
|
exclude(module: 'text-api')
|
|
|
|
}
|
2020-06-10 21:41:39 +02:00
|
|
|
compile('net.kyori:text-serializer-gson:3.0.4') {
|
2019-05-07 01:23:40 +02:00
|
|
|
exclude(module: 'text-api')
|
2018-08-10 21:39:29 +02:00
|
|
|
exclude(module: 'gson')
|
|
|
|
}
|
2018-08-16 21:01:26 +02:00
|
|
|
compile('net.kyori:event-api:3.0.0') {
|
2018-08-10 21:39:29 +02:00
|
|
|
exclude(module: 'checker-qual')
|
|
|
|
exclude(module: 'guava')
|
|
|
|
}
|
|
|
|
compile 'com.google.code.gson:gson:2.7'
|
|
|
|
compile 'com.google.guava:guava:19.0'
|
2020-06-10 21:41:39 +02:00
|
|
|
compile 'com.github.ben-manes.caffeine:caffeine:2.8.4'
|
2020-04-04 23:47:43 +02:00
|
|
|
compile 'com.squareup.okhttp3:okhttp:3.14.7'
|
|
|
|
compile 'com.squareup.okio:okio:1.17.5'
|
2020-03-30 20:18:34 +02:00
|
|
|
compile 'net.bytebuddy:byte-buddy:1.10.9'
|
2018-08-10 21:39:29 +02:00
|
|
|
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')
|
|
|
|
}
|
2020-06-10 21:41:39 +02:00
|
|
|
compile 'com.zaxxer:HikariCP:3.4.5'
|
2020-05-05 18:38:24 +02:00
|
|
|
compile 'redis.clients:jedis:3.3.0'
|
2020-04-04 23:47:43 +02:00
|
|
|
compile 'org.mongodb:mongo-java-driver:3.12.2'
|
2019-01-27 23:49:47 +01:00
|
|
|
compile 'org.yaml:snakeyaml:1.23'
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|