Skip to content

Instantly share code, notes, and snippets.

@loverdos
Created May 20, 2015 10:07
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save loverdos/99bbd34097b8a00f52be to your computer and use it in GitHub Desktop.
Save loverdos/99bbd34097b8a00f52be to your computer and use it in GitHub Desktop.
Get maven project version from the shell
mvn help:evaluate -Dexpression=project.version | grep -e '^[^\[]'
@RobertoGraham
Copy link

@KalivarapuReshma Thanks for that command, I have used it to create this Docker Hub hook script to tag Maven projects with their version

@micw
Copy link

micw commented Mar 14, 2019

Grepping in POM does not honor maven core plug-ins that may alter the version at runtime (e.g. git branch versioning plug-in). So https://gist.github.com/loverdos/99bbd34097b8a00f52be#gistcomment-2721978 looks like the best solution to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment