mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-30 17:49:48 +02:00
86 lines
3.2 KiB
Groovy
86 lines
3.2 KiB
Groovy
plugins {
|
|
alias(libs.plugins.shadow)
|
|
id("jacoco")
|
|
id("jacoco-report-aggregation")
|
|
}
|
|
|
|
sourceCompatibility = 17
|
|
targetCompatibility = 17
|
|
|
|
test {
|
|
useJUnitPlatform {
|
|
if (!project.hasProperty('dockerTests')) {
|
|
excludeTags 'docker'
|
|
}
|
|
}
|
|
systemProperty('net.kyori.ansi.colorLevel', 'indexed16')
|
|
}
|
|
|
|
jacocoTestReport {
|
|
dependsOn test
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
compileOnly project(':common:loader-utils')
|
|
compileOnly project(':standalone:app')
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.0'
|
|
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
|
|
|
|
testImplementation 'org.testcontainers:junit-jupiter:1.21.1'
|
|
testImplementation 'org.mockito:mockito-core:5.18.0'
|
|
testImplementation 'org.mockito:mockito-junit-jupiter:5.18.0'
|
|
testImplementation 'org.awaitility:awaitility:4.3.0'
|
|
|
|
testImplementation 'com.zaxxer:HikariCP:6.3.0'
|
|
testImplementation 'redis.clients:jedis:5.2.0'
|
|
testImplementation 'io.nats:jnats:2.21.1'
|
|
testImplementation 'com.rabbitmq:amqp-client:5.25.0'
|
|
testImplementation 'org.postgresql:postgresql:42.7.6'
|
|
testImplementation 'com.h2database:h2:2.1.214'
|
|
testImplementation 'org.xerial:sqlite-jdbc:3.49.1.0'
|
|
testImplementation 'com.mysql:mysql-connector-j:9.3.0'
|
|
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.5.2'
|
|
testImplementation 'org.mongodb:mongodb-driver-legacy:5.5.0'
|
|
testImplementation 'me.lucko.configurate:configurate-toml:3.7'
|
|
testImplementation 'org.spongepowered:configurate-yaml:3.7.3'
|
|
testImplementation 'org.spongepowered:configurate-hocon:3.7.3'
|
|
testImplementation 'org.yaml:snakeyaml:1.22'
|
|
testImplementation 'net.luckperms:rest-api-java-client:0.1'
|
|
|
|
testImplementation project(':standalone:app')
|
|
testImplementation project(':common:loader-utils')
|
|
}
|
|
|
|
shadowJar {
|
|
archiveFileName = 'luckperms-standalone.jarinjar'
|
|
|
|
dependencies {
|
|
include(dependency('me.lucko.luckperms:.*'))
|
|
}
|
|
|
|
relocate 'net.kyori.event', 'me.lucko.luckperms.lib.eventbus'
|
|
relocate 'com.github.benmanes.caffeine', 'me.lucko.luckperms.lib.caffeine'
|
|
relocate 'okio', 'me.lucko.luckperms.lib.okio'
|
|
relocate 'okhttp3', 'me.lucko.luckperms.lib.okhttp3'
|
|
relocate 'net.bytebuddy', 'me.lucko.luckperms.lib.bytebuddy'
|
|
relocate 'me.lucko.commodore', 'me.lucko.luckperms.lib.commodore'
|
|
relocate 'org.mariadb.jdbc', 'me.lucko.luckperms.lib.mariadb'
|
|
relocate 'com.mysql', 'me.lucko.luckperms.lib.mysql'
|
|
relocate 'org.postgresql', 'me.lucko.luckperms.lib.postgresql'
|
|
relocate 'com.zaxxer.hikari', 'me.lucko.luckperms.lib.hikari'
|
|
relocate 'com.mongodb', 'me.lucko.luckperms.lib.mongodb'
|
|
relocate 'org.bson', 'me.lucko.luckperms.lib.bson'
|
|
relocate 'redis.clients.jedis', 'me.lucko.luckperms.lib.jedis'
|
|
relocate 'io.nats.client', 'me.lucko.luckperms.lib.nats'
|
|
relocate 'com.rabbitmq', 'me.lucko.luckperms.lib.rabbitmq'
|
|
relocate 'org.apache.commons.pool2', 'me.lucko.luckperms.lib.commonspool2'
|
|
relocate 'ninja.leaping.configurate', 'me.lucko.luckperms.lib.configurate'
|
|
relocate 'org.yaml.snakeyaml', 'me.lucko.luckperms.lib.yaml'
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
}
|