LuckPerms/common/build.gradle

74 lines
2.2 KiB
Groovy
Raw Normal View History

test {
2020-12-23 13:16:14 +01:00
useJUnitPlatform {
excludeTags 'dependency_checksum'
}
}
2018-08-10 21:39:29 +02:00
dependencies {
testCompile 'org.junit.jupiter:junit-jupiter-api:5.7.0'
testCompile 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
2019-08-26 19:00:02 +02:00
compile project(':api')
2021-04-18 19:20:54 +02:00
compile 'org.checkerframework:checker-qual:3.12.0'
2021-01-04 16:23:54 +01:00
compileOnly project(':common:loader-utils')
2021-01-04 16:23:54 +01:00
compileOnly 'org.slf4j:slf4j-api:1.7.30'
compileOnly 'org.apache.logging.log4j:log4j-api:2.14.0'
compile('net.kyori:adventure-api:4.8.1') {
2021-04-18 14:33:22 +02:00
exclude(module: 'adventure-bom')
2018-08-10 21:39:29 +02:00
exclude(module: 'checker-qual')
2021-04-18 14:33:22 +02:00
exclude(module: 'annotations')
}
compile('net.kyori:adventure-text-serializer-gson:4.8.1') {
2021-04-18 14:33:22 +02:00
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
exclude(module: 'gson')
}
compile('net.kyori:adventure-text-serializer-legacy:4.8.1') {
2021-04-18 14:33:22 +02:00
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
}
compile('net.kyori:adventure-text-serializer-plain:4.8.1') {
2021-04-18 14:33:22 +02:00
exclude(module: 'adventure-bom')
exclude(module: 'adventure-api')
2019-05-07 01:23:40 +02:00
}
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')
}
2021-04-18 19:20:54 +02:00
2018-08-10 21:39:29 +02:00
compile 'com.google.code.gson:gson:2.7'
compile 'com.google.guava:guava:19.0'
2021-04-18 19:20:54 +02:00
compile 'com.github.ben-manes.caffeine:caffeine:2.9.0'
compile 'com.squareup.okhttp3:okhttp:3.14.9'
2020-04-04 23:47:43 +02:00
compile 'com.squareup.okio:okio:1.17.5'
2021-04-18 19:20:54 +02:00
compile 'net.bytebuddy:byte-buddy:1.10.22'
compile('org.spongepowered:configurate-core:3.7.2') {
transitive = false
2018-08-10 21:39:29 +02:00
}
2021-04-18 19:20:54 +02:00
compile('org.spongepowered:configurate-yaml:3.7.2') {
transitive = false
2018-08-10 21:39:29 +02:00
}
2021-04-18 19:20:54 +02:00
compile('org.spongepowered:configurate-gson:3.7.2') {
transitive = false
2018-08-10 21:39:29 +02:00
}
2021-04-18 19:20:54 +02:00
compile ('org.spongepowered:configurate-hocon:3.7.2') {
transitive = false
2020-08-01 12:08:46 +02:00
}
compile('me.lucko.configurate:configurate-toml:3.7') {
2021-04-18 19:20:54 +02:00
transitive = false
2018-08-10 21:39:29 +02:00
}
2021-04-18 19:20:54 +02:00
compile 'com.zaxxer:HikariCP:4.0.3'
compile 'redis.clients:jedis:3.5.2'
compile 'com.rabbitmq:amqp-client:5.12.0'
compile 'org.mongodb:mongo-java-driver:3.12.8'
compile 'org.yaml:snakeyaml:1.28'
2018-08-10 21:39:29 +02:00
}