mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-18 16:45:36 +01:00
29 lines
520 B
Groovy
29 lines
520 B
Groovy
plugins {
|
|
alias(libs.plugins.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
|
|
}
|