mirror of
https://github.com/Crazy-Crew/CrazyAuctions.git
synced 2024-11-14 10:35:15 +01:00
25 lines
479 B
Plaintext
25 lines
479 B
Plaintext
plugins {
|
|
id("paper-plugin")
|
|
}
|
|
|
|
group = "${rootProject.group}.core"
|
|
version = rootProject.version
|
|
|
|
base {
|
|
archivesName = "${rootProject.name}-${project.name}"
|
|
}
|
|
|
|
tasks {
|
|
assemble {
|
|
dependsOn(shadowJar)
|
|
doLast {
|
|
delete(fileTree(baseDir = "$buildDir").include("**/*-dev*.jar"))
|
|
}
|
|
}
|
|
|
|
shadowJar {
|
|
archiveBaseName = "${rootProject.name}-${project.name}"
|
|
archiveClassifier = ""
|
|
mergeServiceFiles()
|
|
}
|
|
} |