I would like to configure my maven release to run in batch mode, but I'm not a fan of the standard scm tag ${artifactId}-${releaseVersion} . Instead, I would just tag it ${releaseVersion} ; however, I do not know if such a property exists (i.e. without the -SNAPSHOT suffix).
I would like the configuration to be similar to the code below. Is such a default tag possible with the maven-release plugin?
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.0</version> <configuration> <tag>${releaseVersion}</tag> </configuration> </plugin>
source share