mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-20 09:36:14 +01:00
29 lines
530 B
Groovy
29 lines
530 B
Groovy
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
|
|
}
|