I would like to setup my maven release to run in batch mode, but I'm not a fan of the default scm tag ${artifactId}-${releaseVersion}. Instead, I'd like to simply tag it with ${releaseVersion}; however, I'm unclear if such a property exists (ie. without the -SNAPSHOT suffix).

I'd like the configuration to resemble the code below. Is such a default tagging possible with the maven-release-plugin?

 <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.0</version>
        <configuration>
          <tag>${releaseVersion}</tag>
        </configuration>
      </plugin>
link|improve this question
Part of the reason for running in batch mode is to perform automated releases. So this has to happen without any interaction. – user294059 Mar 18 '10 at 16:39
This is very similar to my question: stackoverflow.com/questions/4466714/… – Andrew Swan Mar 2 '11 at 22:05
feedback

3 Answers

up vote -1 down vote accepted

try this:

<configuration>
     <tag>${project.version}</tag>
</configuration>
link|improve this answer
When I run this, at least with a mvn release:prepare -DdryRun=true, I get the scm tag 0.2-SNAPSHOT(ie. with -SNAPSHOT). I'm looking for an easy way to get the version number without SNAPSHOT. – user294059 Mar 18 '10 at 14:19
strange, isn't the release supposed to be a normal version and not a napshot --> Change the version in the POMs from x-SNAPSHOT to a new version – Stefan De Boey Mar 18 '10 at 14:52
Change the version in the POMs from x-SNAPSHOT to a new version --> taken from the documentation – Stefan De Boey Mar 18 '10 at 15:26
When running the release:prepare in batch mode the maven-release-plugin manages updating all the pom files (ie. 0.2-SNAPSHOT becomes 0.2). So I can't change the pom files. I'm just trying to find out if there is a property I can use to determine the target release version; the maven-release-plugin documentation suggest one exists I'm just hopeful. – user294059 Mar 18 '10 at 16:25
1  
:( - See related JIRA issue - jira.codehaus.org/browse/MRELEASE-259 and jira.codehaus.org/browse/MRELEASE-159 – user294059 Mar 18 '10 at 17:56
show 2 more comments
feedback

You can pass in the properties for:

releaseVersion -- What version you want it to be released as (1.0) developmentVersion -- The next version (2.0-SNAPSHOT) tag -- The name of the tag

a 1.0-SNAPSHOT implies a 1.0 release version, but doesn't set it. You can set that property in your POM file as a regular property.

link|improve this answer
feedback

I just got this to work when using Hudson to do my release. I noted that Hudson (with the Maven Release Plugin) is initiating the command with a property like -Dproject.rel.com.example:my-artifact-id=1.0.1. Using the following plugin configuration:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-release-plugin</artifactId>
    <configuration>
        <tag>REL-${project.rel.com.example:my-artifact-id}</tag>
    </configuration>
</plugin>

Resulted in the tag being REL-1.0.1

I'm new to the release plugin but I would assume something similar would work from the command line.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.