mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-17 16:15:30 +01:00
34 lines
608 B
Groovy
34 lines
608 B
Groovy
plugins {
|
|
id 'com.github.johnrengelman.shadow'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven { url 'https://repo.nukkitx.com/main/' }
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'cn.nukkit:nukkit:1.0-SNAPSHOT'
|
|
|
|
implementation project(':api')
|
|
implementation project(':common:loader-utils')
|
|
}
|
|
|
|
processResources {
|
|
filesMatching('plugin.yml') {
|
|
expand 'pluginVersion': project.ext.fullVersion
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
archiveFileName = "LuckPerms-Nukkit-${project.ext.fullVersion}.jar"
|
|
|
|
from {
|
|
project(':nukkit').tasks.shadowJar.archiveFile
|
|
}
|
|
}
|
|
|
|
artifacts {
|
|
archives shadowJar
|
|
}
|