mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
59 lines
2.1 KiB
Groovy
59 lines
2.1 KiB
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow' version '8.1.1'
|
|
}
|
|
|
|
repositories {
|
|
maven { url 'https://repo.spongepowered.org/repository/maven-public/' }
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':common')
|
|
implementation project(':sponge:sponge-service')
|
|
implementation project(':sponge:sponge-service-api8')
|
|
compileOnly project(':common:loader-utils')
|
|
|
|
compileOnly('org.spongepowered:spongeapi:8.0.0') {
|
|
exclude(module: 'configurate-core')
|
|
exclude(module: 'configurate-hocon')
|
|
exclude(module: 'configurate-gson')
|
|
exclude(module: 'configurate-yaml')
|
|
}
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('META-INF/sponge_plugins.json') {
|
|
expand 'pluginVersion': project.ext.fullVersion
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
archiveFileName = 'luckperms-sponge.jarinjar'
|
|
|
|
dependencies {
|
|
include(dependency('me.lucko.luckperms:.*'))
|
|
}
|
|
|
|
//relocate 'net.kyori.adventure', 'me.lucko.luckperms.lib.adventure'
|
|
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'
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
}
|