plugins { id 'com.github.johnrengelman.shadow' } dependencies { compileOnly 'net.md-5:bungeecord-api:1.15-SNAPSHOT' implementation project(':api') implementation project(':common:loader-utils') } processResources { filesMatching('plugin.yml') { expand 'pluginVersion': project.ext.fullVersion } } shadowJar { archiveFileName = "LuckPerms-Bungee-${project.ext.fullVersion}.jar" from { project(':bungee').tasks.shadowJar.archiveFile } } artifacts { archives shadowJar }