Skip to content

Instantly share code, notes, and snippets.

@mrmike
Created April 22, 2015 13:58
Show Gist options
  • Save mrmike/0fee29e840be6eaae394 to your computer and use it in GitHub Desktop.
Save mrmike/0fee29e840be6eaae394 to your computer and use it in GitHub Desktop.
Get CommitId in build.gradle
def getCommitId() {
def output = new ByteArrayOutputStream()
exec {
commandLine 'git', 'rev-parse', '--short', 'HEAD'
standardOutput = output
}
return output.toString()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment