mirror of
https://github.com/Artillex-Studios/AxMinions.git
synced 2024-11-25 12:05:56 +01:00
21 lines
307 B
Groovy
21 lines
307 B
Groovy
plugins {
|
|
id("io.papermc.paperweight.userdev")
|
|
}
|
|
|
|
group = 'com.artillexstudios.axminions.nms'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
dependencies {
|
|
paperweight.paperDevBundle("1.19.3-R0.1-SNAPSHOT")
|
|
}
|
|
|
|
tasks {
|
|
build {
|
|
dependsOn(reobfJar)
|
|
}
|
|
|
|
reobfJar {
|
|
mustRunAfter(shadowJar)
|
|
}
|
|
}
|