gradle-GitVersioner
gradle-GitVersioner copied to clipboard
Branchname prefix "feature" is handled correctly, "bugfix" is not
The version name for a feature branch like this "feature/XYZ-566-something" is correctly converted into the version name "
But if I use a different prefix, "bugfix" for example, the prefix will not be removed from the version name leading to a completely broken .jar name of my resulting artifact.
I would like to have the same behaviour for any prefix, simply remove it.
To reproduce:
- Create a simple java library project
- Create a branch named "bugfix/Something"
- Build the jar file