LuckPerms/standalone/build.gradle

86 lines
3.2 KiB
Groovy
Raw Normal View History

2022-07-20 23:46:22 +02:00
plugins {
alias(libs.plugins.shadow)
2023-08-05 10:49:56 +02:00
id("jacoco")
id("jacoco-report-aggregation")
2022-07-20 23:46:22 +02:00
}
sourceCompatibility = 17
targetCompatibility = 17
2023-04-01 18:35:50 +02:00
test {
useJUnitPlatform {
if (!project.hasProperty('dockerTests')) {
excludeTags 'docker'
}
}
2023-08-05 11:09:30 +02:00
systemProperty('net.kyori.ansi.colorLevel', 'indexed16')
2023-04-01 18:35:50 +02:00
}
2023-08-05 10:49:56 +02:00
jacocoTestReport {
dependsOn test
}
2022-07-20 23:46:22 +02:00
dependencies {
implementation project(':common')
compileOnly project(':common:loader-utils')
compileOnly project(':standalone:app')
compileOnly 'org.spongepowered:configurate-yaml:3.7.2'
2023-04-01 18:35:50 +02:00
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.9.1'
2023-06-25 23:25:42 +02:00
testImplementation "org.testcontainers:junit-jupiter:1.18.3"
2023-04-01 18:35:50 +02:00
testImplementation 'org.mockito:mockito-core:4.11.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.11.0'
2023-05-01 16:07:09 +02:00
testImplementation 'org.awaitility:awaitility:4.2.0'
testImplementation 'com.zaxxer:HikariCP:4.0.3'
2023-06-24 00:30:22 +02:00
testImplementation 'redis.clients:jedis:4.4.3'
testImplementation 'io.nats:jnats:2.16.4'
testImplementation 'com.rabbitmq:amqp-client:5.12.0'
testImplementation 'org.postgresql:postgresql:42.6.0'
2023-04-01 18:35:50 +02:00
testImplementation 'com.h2database:h2:2.1.214'
2023-06-25 23:25:42 +02:00
testImplementation 'org.xerial:sqlite-jdbc:3.42.0.0'
testImplementation 'mysql:mysql-connector-java:8.0.23'
2023-05-01 11:00:19 +02:00
testImplementation 'org.mariadb.jdbc:mariadb-java-client:3.1.3'
2023-04-30 22:27:42 +02:00
testImplementation 'org.mongodb:mongodb-driver-legacy:4.5.0'
testImplementation 'me.lucko.configurate:configurate-toml:3.7'
testImplementation 'org.spongepowered:configurate-hocon:3.7.2'
testImplementation 'org.yaml:snakeyaml:1.28'
2023-04-01 18:35:50 +02:00
testImplementation project(':standalone:app')
testImplementation project(':common:loader-utils')
2022-07-20 23:46:22 +02:00
}
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'
2022-07-20 23:46:22 +02:00
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'
2022-11-26 19:06:15 +01:00
relocate 'io.nats.client', 'me.lucko.luckperms.lib.nats'
2022-07-20 23:46:22 +02:00
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'
2022-09-30 21:20:57 +02:00
relocate 'org.yaml.snakeyaml', 'me.lucko.luckperms.lib.yaml'
2022-07-20 23:46:22 +02:00
}
artifacts {
archives shadowJar
}