Created
July 26, 2014 18:14
Revisions
-
xdev-developer created this gist
Jul 26, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ val branch = "git rev-parse --abbrev-ref HEAD".!!.trim val commit = "git rev-parse --short HEAD".!!.trim val buildTime = (new java.text.SimpleDateFormat("yyyyMMdd-HHmmss")).format(new java.util.Date()) version := "%s-%s-%s".format(branch, commit, buildTime)