gradle, version can now be set on command line.

the default version is in gradle.properties, to change it e.g. to 1.0.0 call:
gradle build -Pversion=1.0.0
This commit is contained in:
soloturn 2022-01-11 17:37:16 +01:00
parent 2a946bf80b
commit eb37b1f33b
2 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,6 @@ dependencies {
}
group = "net.sourceforge.plantuml"
version = "1.2021.16-SNAPSHOT"
description = "PlantUML"
java.sourceCompatibility = JavaVersion.VERSION_1_8

1
gradle.properties Normal file
View File

@ -0,0 +1 @@
version = "1.2021.16-SNAPSHOT"