LuckPerms/bungee/loader/build.gradle

29 lines
524 B
Groovy
Raw Normal View History

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