plugins { id 'com.github.johnrengelman.shadow' version '2.0.4' } repositories { maven { name 'spigot-repo' url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/' } } dependencies { compile project(':common') compileOnly 'org.spigotmc:spigot-api:1.12.2-R0.1-SNAPSHOT' compileOnly 'me.lucko:commodore:1.0' 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 }