mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-03 17:39:31 +01:00
78 lines
2.1 KiB
Groovy
78 lines
2.1 KiB
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform {
|
|
excludeTags 'dependency_checksum'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.0'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.7.0'
|
|
|
|
api project(':api')
|
|
api 'org.checkerframework:checker-qual:3.12.0'
|
|
|
|
compileOnly project(':common:loader-utils')
|
|
|
|
compileOnly 'org.slf4j:slf4j-api:1.7.30'
|
|
compileOnly 'org.apache.logging.log4j:log4j-api:2.14.0'
|
|
|
|
api('net.kyori:adventure-api:4.9.3') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'annotations')
|
|
}
|
|
|
|
api('net.kyori:adventure-text-serializer-gson:4.9.3') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'adventure-api')
|
|
exclude(module: 'gson')
|
|
}
|
|
|
|
api('net.kyori:adventure-text-serializer-legacy:4.9.3') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'adventure-api')
|
|
}
|
|
|
|
api('net.kyori:adventure-text-serializer-plain:4.9.3') {
|
|
exclude(module: 'adventure-bom')
|
|
exclude(module: 'adventure-api')
|
|
}
|
|
|
|
api('net.kyori:event-api:3.0.0') {
|
|
exclude(module: 'checker-qual')
|
|
exclude(module: 'guava')
|
|
}
|
|
|
|
api 'com.google.code.gson:gson:2.7'
|
|
api 'com.google.guava:guava:19.0'
|
|
|
|
api 'com.github.ben-manes.caffeine:caffeine:2.9.0'
|
|
api 'com.squareup.okhttp3:okhttp:3.14.9'
|
|
api 'com.squareup.okio:okio:1.17.5'
|
|
api 'net.bytebuddy:byte-buddy:1.10.22'
|
|
api('org.spongepowered:configurate-core:3.7.2') {
|
|
transitive = false
|
|
}
|
|
api('org.spongepowered:configurate-yaml:3.7.2') {
|
|
transitive = false
|
|
}
|
|
api('org.spongepowered:configurate-gson:3.7.2') {
|
|
transitive = false
|
|
}
|
|
api('org.spongepowered:configurate-hocon:3.7.2') {
|
|
transitive = false
|
|
}
|
|
api('me.lucko.configurate:configurate-toml:3.7') {
|
|
transitive = false
|
|
}
|
|
api 'com.zaxxer:HikariCP:4.0.3'
|
|
api 'redis.clients:jedis:3.5.2'
|
|
api 'com.rabbitmq:amqp-client:5.12.0'
|
|
api 'org.mongodb:mongodb-driver-legacy:4.5.0'
|
|
api 'org.yaml:snakeyaml:1.28'
|
|
}
|