Skip to content

Commit

Permalink
Update runServer task for 1.21.1
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Brandes <[email protected]>
  • Loading branch information
NotMyFault committed Sep 15, 2024
1 parent 526f1f7 commit c249654
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ logger.lifecycle("""
*******************************************
""")

var rootVersion by extra("2.11.2")
var rootVersion by extra("2.11.3")
var snapshot by extra("SNAPSHOT")
var revision: String by extra("")
var buildNumber by extra("")
Expand All @@ -52,7 +52,7 @@ ext {
}
}

version = String.format("%s", rootVersion)
version = String.format("%s-%s", rootVersion, buildNumber)

if (!project.hasProperty("gitCommitHash")) {
apply(plugin = "org.ajoberstar.grgit")
Expand Down Expand Up @@ -97,7 +97,7 @@ tasks {
}
}
runServer {
minecraftVersion("1.20.4")
minecraftVersion("1.21.1")
pluginJars(*project(":worldedit-bukkit").getTasksByName("shadowJar", false).map { (it as Jar).archiveFile }
.toTypedArray())

Expand Down

0 comments on commit c249654

Please sign in to comment.