Skip to content

Commit

Permalink
Retrieve version from gradle.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim203 committed Feb 13, 2023
1 parent 4f8a83c commit b1f1a2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down
4 changes: 3 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
org.gradle.configureondemand=true
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.parallel=true

version=2.2.2-SNAPSHOT

0 comments on commit b1f1a2b

Please sign in to comment.