Skip to content

Instantly share code, notes, and snippets.

@loverdos
Created May 20, 2015 10:07
Show Gist options
  • 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 '^[^\[]'
@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