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
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2019-01-07 22:25:11 +01:00
|
|
|
maven { url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' }
|
2019-01-07 22:29:28 +01:00
|
|
|
maven { url 'https://libraries.minecraft.net/' }
|
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
|
|
|
|
2019-05-12 00:12:55 +02:00
|
|
|
compileOnly 'org.spigotmc:spigot-api:1.14-R0.1-SNAPSHOT'
|
|
|
|
compileOnly 'net.kyori:text-adapter-bukkit:3.0.2'
|
2019-01-07 22:29:28 +01:00
|
|
|
compileOnly 'me.lucko:commodore:1.3'
|
2018-08-10 21:39:29 +02:00
|
|
|
compileOnly('net.milkbowl.vault:VaultAPI:1.6') {
|
|
|
|
exclude(module: 'bukkit')
|
|
|
|
}
|
|
|
|
compileOnly 'lilypad.client.connect:api:0.0.1-SNAPSHOT'
|
|
|
|
|
|
|
|
// migration plugins
|
|
|
|
compileOnly 'org.tyrannyofheaven.bukkit:zPermissions:1.3'
|
|
|
|
compileOnly('ru.tehkode:PermissionsEx:1.23.5') {
|
|
|
|
exclude(module: 'bukkit')
|
|
|
|
exclude(module: 'updater')
|
|
|
|
exclude(module: 'commons-dbcp')
|
|
|
|
exclude(module: 'AccountsClient')
|
|
|
|
}
|
|
|
|
compileOnly 'com.github.gustav9797:PowerfulPermsAPI:4.5.2'
|
|
|
|
compileOnly 'org.anjocaido:GroupManager:1.4'
|
|
|
|
compileOnly 'de.bananaco:bpermissions-api:2.12'
|
|
|
|
compileOnly('com.platymuus:bukkit-permissions:2.5') {
|
|
|
|
exclude(module: 'bukkit')
|
|
|
|
exclude(module: 'metrics')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
processResources {
|
|
|
|
from(sourceSets.main.resources.srcDirs) {
|
|
|
|
expand 'pluginVersion': project.ext.fullVersion
|
|
|
|
include 'plugin.yml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
archiveName = "LuckPerms-Bukkit-${project.ext.fullVersion}.jar"
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
include(dependency('me.lucko.luckperms:.*'))
|
|
|
|
}
|
|
|
|
|
|
|
|
relocate 'net.kyori.text', 'me.lucko.luckperms.lib.text'
|
|
|
|
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 '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
|
|
|
|
}
|