2018-09-19 20:41:47 +02:00
|
|
|
plugins {
|
2023-06-24 01:15:03 +02:00
|
|
|
alias(libs.plugins.shadow)
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2022-02-07 22:10:01 +01:00
|
|
|
maven { url 'https://repo.spongepowered.org/repository/maven-public/' }
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-08-20 19:16:39 +02:00
|
|
|
implementation project(':common')
|
|
|
|
implementation project(':sponge:sponge-service')
|
2022-02-07 22:10:01 +01:00
|
|
|
implementation project(':sponge:sponge-service-api8')
|
2022-02-17 01:22:46 +01:00
|
|
|
compileOnly project(':common:loader-utils')
|
2018-08-10 21:39:29 +02:00
|
|
|
|
2022-02-07 22:10:01 +01:00
|
|
|
compileOnly('org.spongepowered:spongeapi:8.0.0') {
|
2019-01-12 14:39:07 +01:00
|
|
|
exclude(module: 'configurate-core')
|
|
|
|
exclude(module: 'configurate-hocon')
|
|
|
|
exclude(module: 'configurate-gson')
|
|
|
|
exclude(module: 'configurate-yaml')
|
|
|
|
}
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
2022-02-07 22:10:01 +01:00
|
|
|
processResources {
|
|
|
|
filesMatching('META-INF/sponge_plugins.json') {
|
|
|
|
expand 'pluginVersion': project.ext.fullVersion
|
|
|
|
}
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
2022-02-17 01:22:46 +01:00
|
|
|
archiveFileName = 'luckperms-sponge.jarinjar'
|
2018-08-10 21:39:29 +02:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
include(dependency('me.lucko.luckperms:.*'))
|
|
|
|
}
|
|
|
|
|
2022-02-07 22:10:01 +01:00
|
|
|
//relocate 'net.kyori.adventure', 'me.lucko.luckperms.lib.adventure'
|
2018-08-10 21:39:29 +02:00
|
|
|
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'
|
2020-03-30 20:18:34 +02:00
|
|
|
relocate 'net.bytebuddy', 'me.lucko.luckperms.lib.bytebuddy'
|
2018-08-10 21:39:29 +02:00
|
|
|
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'
|
2023-06-11 15:36:00 +02:00
|
|
|
relocate 'org.postgresql', 'me.lucko.luckperms.lib.postgresql'
|
2018-08-10 21:39:29 +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'
|
2021-02-04 18:10:30 +01:00
|
|
|
relocate 'com.rabbitmq', 'me.lucko.luckperms.lib.rabbitmq'
|
2018-08-10 21:39:29 +02:00
|
|
|
relocate 'org.apache.commons.pool2', 'me.lucko.luckperms.lib.commonspool2'
|
|
|
|
relocate 'ninja.leaping.configurate', 'me.lucko.luckperms.lib.configurate'
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives shadowJar
|
|
|
|
}
|