mirror of
https://github.com/lucko/LuckPerms.git
synced 2025-08-29 09:09:51 +02:00
31 lines
581 B
Groovy
31 lines
581 B
Groovy
plugins {
|
|
alias(libs.plugins.shadow)
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly('net.md-5:bungeecord-api:1.19-R0.1-SNAPSHOT') {
|
|
exclude(module: 'bungeecord-protocol')
|
|
}
|
|
|
|
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
|
|
}
|