diff --git a/build.gradle.kts b/build.gradle.kts index 9eac848e..da89fe19 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ plugins { allprojects { group = "org.geysermc.floodgate" - version = "2.2.1-SNAPSHOT" + version = property("version")!! description = "Allows Bedrock players to join Java edition servers while keeping the server in online mode" } diff --git a/gradle.properties b/gradle.properties index af7d8325..af961a84 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,5 @@ org.gradle.configureondemand=true org.gradle.caching=true -org.gradle.parallel=true \ No newline at end of file +org.gradle.parallel=true + +version=2.2.2-SNAPSHOT \ No newline at end of file