Version 0.9.7-beta

This commit is contained in:
Erik C. Thauvin 2018-07-13 16:03:30 -07:00
parent a4e47cef0b
commit 56593230ac
28 changed files with 212 additions and 186 deletions

View file

@ -8,7 +8,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath "net.thauvin.erik.gradle:semver:0.9.6-beta"
classpath "net.thauvin.erik.gradle:semver:0.9.7-beta"
}
}
@ -40,6 +40,13 @@ incrementPatch {
}
}
incrementBuildMeta {
doFirst {
//buildMeta = sprintf("%03d", (buildMeta as Integer) + 1)
buildMeta = new Date().format("yyyyMMddHHmmss")
}
}
run {
//dependsOn("incrementPatch")
doFirst {
@ -52,4 +59,4 @@ semver {
properties = "$projectDir/${f.name}"
keysPrefix = f.name.substring(0, f.name.indexOf(".") + 1)
buildMetaKey = "meta"
}
}