Updated example to cat the version properties file.

This commit is contained in:
Erik C. Thauvin 2018-07-07 01:40:16 -07:00
parent abe1ca269c
commit b50f2bad9a
10 changed files with 58 additions and 26 deletions

View file

@ -38,9 +38,12 @@ tasks {
useTestNG()
}
val run by getting {
val run by getting(JavaExec::class) {
doFirst {
println("Version: $version")
}
// args = listof("example.properties")
args = listOf("version.properties")
}
}