1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-03 13:27:23 +01:00

Add printPaperVersion task

This commit is contained in:
Shane Freeder 2022-03-04 09:41:03 +00:00
parent 8b2e99a315
commit a9bcb9deed

View file

@ -128,3 +128,9 @@ tasks.register("printMinecraftVersion") {
println(providers.gradleProperty("mcVersion").get().trim())
}
}
tasks.register("printPaperVersion") {
doLast {
println(project.version)
}
}