I'd like to run a custom maven step using the completionGoals option of the maven-release-plugin. This steps need to know the tag name the maven-release-plugin used to tag the release commit. Is there a variable to access this tag name?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
the release-plugin has "tagNameFormat" as configuration paramter. You could set that one to a variable and use it for your own purpose too? The default is "@{project.artifactId}-@{project.version}" (see http://maven.apache.org/plugins/maven-release-plugin/prepare-mojo.html#tagNameFormat) so you could just guess it that way if you know folks dont use that paramter. since the released pom.xml will contain the tag url in ${project.scm.developerconnection} that may be an option as well. |
|||
|
|