Using maven release:prepare simplifies the process of deploying an artifact. It is possible to define the tag with tag
tag. The plugin allows to use properties to build a customized tag-name.
But I need a more customized version, which used "_" insteat of points for delimeters in version. e.g. version: 1.0.1.2 => tagname should be 01_01_01 .
If I could access the majorVersion, minorVersion of ${project.version} this would be a solution too. But it seems that they are not available general.
Any ideas how to achieve this in an easy manner?