Skip to content

Instantly share code, notes, and snippets.

@fabiojose
Created January 28, 2020 19:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiojose/0f1995a7fa7a3ec46dbb8f51eedc4ff2 to your computer and use it in GitHub Desktop.
Save fabiojose/0f1995a7fa7a3ec46dbb8f51eedc4ff2 to your computer and use it in GitHub Desktop.
Get project version using gradle
#!/bin/bash
gradle properties \
--no-daemon \
--console=plain -q \
| grep "^version:" \
| awk '{printf $2}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment