I'm currently working on automating the build process (more or less) using maven
.
I need to create an rpm but in order to do so, I need to retrieve the latest version. As part of the convention, we're using GIT
's tags to store the version of the system on the master branch.
Unfortunately, buildNumber-maven-plugin is using git show
instead of git describe
and I can't find a suitable configuration for it to work.
How should I configure this thing ?