2018-09-19 20:41:47 +02:00
|
|
|
plugins {
|
|
|
|
id 'com.github.johnrengelman.shadow' version '2.0.4'
|
2018-08-10 21:39:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-08-11 19:11:30 +02:00
|
|
|
compile project(':common')
|
2018-08-10 21:39:29 +02:00
|
|
|
|
2020-01-16 17:05:19 +01:00
|
|
|
compileOnly 'net.md-5:bungeecord-api:1.15-SNAPSHOT'
|
2020-10-16 01:17:42 +02:00
|
|
|
compileOnly 'me.lucko:adventure-platform-bungeecord:4.0.0' // re: this artifact - see note in common/build.gradle
|
2018-08-10 21:39:29 +02:00
|
|
|
compileOnly 'com.imaginarycode.minecraft:RedisBungee:0.4'
|
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
expand 'pluginVersion': project.ext.fullVersion
|
|
|
|
include 'plugin.yml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveName = "LuckPerms-Bungee-${project.ext.fullVersion}.jar"
|
|
|
|
|
|
|
|
dependencies {
|
2019-08-29 23:07:12 +02:00
|
|
|
include(dependency('net.luckperms:.*'))
|
2018-08-10 21:39:29 +02:00
|
|
|
include(dependency('me.lucko.luckperms:.*'))
|
|
|
|
}
|
|
|
|
|
2020-10-14 13:26:09 +02: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'
|
|
|
|
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 'org.apache.commons.pool2', 'me.lucko.luckperms.lib.commonspool2'
|
|
|
|
relocate 'ninja.leaping.configurate', 'me.lucko.luckperms.lib.configurate'
|
|
|
|
}
|
|
|
|
|
|
|
|
artifacts {
|
|
|
|
archives shadowJar
|
|
|
|
}
|