mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-15 23:20:44 +00:00
23 lines
405 B
Groovy
23 lines
405 B
Groovy
|
|
pluginManager.withPlugin("xyz.jpenilla.run-paper") {
|
|
tasks {
|
|
runServer {
|
|
minecraftVersion("1.18")
|
|
}
|
|
}
|
|
}
|
|
|
|
pluginManager.withPlugin("io.papermc.paperweight.userdev") {
|
|
tasks {
|
|
processResources {
|
|
filesMatching("plugin.yml") {
|
|
expand project.properties
|
|
}
|
|
}
|
|
}
|
|
|
|
build {
|
|
dependsOn(reobfJar)
|
|
}
|
|
}
|