
git-branch-renamer-maven-plugin

When working with many feature/release/bugix/hotfix branches, it is a bad idea to start changing the pom version as this will create merge conflicts using pull request. this plugin allow you to keep in ALL branches the same pom version for all your projects, for example MASTER-SNAPSHOT the version will be derived from branch name automagically 🙂
You may want to read more first these 2 short articles
git-branch-renamer-maven-plugin allow you to keep in ALL branches the same pom version for all your projects: for example MASTER-SNAPSHOT
and never change it again.
the project version will be derived from branch name automatically when running in your continuous integration server.
branch name feature/xxxx
<version>xxxx-SNAPSHOT</version>
(default)<version>xxxx</version>
(release = true)<version>0-xxxx-SNAPSHOT</version>
(forceNumericalVersion = true)<version>feature-xxxx-SNAPSHOT</version>
(filterOutBranchQualifier = false)
The project is hosted at Github https://github.com/cedricwalter/git-branch-renamer-maven-plugin