This commit is contained in:
Erik C. Thauvin 2021-05-31 12:12:43 -07:00
parent d19857bdd7
commit 5e6a29fbe0
7 changed files with 49 additions and 50 deletions

View file

@ -2,7 +2,7 @@ plugins {
id 'java'
id 'application'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'com.github.ben-manes.versions' version '0.38.0'
id 'com.github.ben-manes.versions' version '0.39.0'
}
// ./gradlew
@ -36,10 +36,10 @@ application {
}
semver {
// properties = "example.properties"
// keysPrefix = "example."
// preReleaseKey = "release"
// buildMetaKey = "meta"
// properties = 'example.properties'
// keysPrefix = 'example.'
// preReleaseKey = 'release'
// buildMetaKey = 'meta'
}
incrementBuildMeta {
@ -60,5 +60,5 @@ run {
}
task echoVersion(type:Exec) {
commandLine 'echo', "${-> project.version}"
commandLine('echo', "${-> project.version}")
}