I'm using the maven release plugin to perform the following with maven-3.0.3

mvn release:prepare

Everything seems to be going fine except that when it creates the tag in SVN, it copies the previous version from the tags folder with the correct label. Any ideas why?

If I switch back to maven-2.2.1, the tagging is correct and the contents of the tagging are the expected ones.

With Maven 2.2.1:

[INFO] Tagging release with the label crcib-6.8.5...
[INFO] Executing: cmd.exe /X /C "svn --non-interactive copy --file c:\DOCUME~1\markand\LOCALS~1\Temp\maven-scm-1593649573.commit . <url>/svn/repos/crcib/tags/crcib-6.8.5"

With Maven 3.0.3:

[INFO] Tagging release with the label crcib-6.8.5...
[INFO] Executing: cmd.exe /X /C "svn --non-interactive copy --file c:\DOCUME~1\markand\LOCALS~1\Temp\maven-scm-2047728233.commit --revision 6331 <url>/svn/repos/crcib/tags/crcib-6.8.2 <url>/svn/repos/crcib/tags/crcib-6.8.5"

Any ideas why? Also, it seems that when using Maven 2, several artifacts are being downloaded before the tagging commences. This is not the case with Maven 3.

link|improve this question

71% accept rate
It seems you have minor mistake in your 2nd output (for maven 3): you've mentioned both crcib-6.8.2 and crcib-6.8.5. Is it so? Also compare if plugin versions match in maven output, e.g. [INFO] --- maven-release-plugin:2.7.2:preapre. – dma_k Jan 4 at 14:48
that's what exactly the error is. it seems to be copying a the 6.8.2 tag to 6.8.5 as opposed to doing what Maven 2.2.1 does – kkudi Jan 4 at 15:51
how do you compare if plugin versions match? do you know what maven release plugin version I should use for maven 3.0.3? Maybe it's an incompatibility issue! – kkudi Jan 4 at 15:52
I have no experience with this plugin under maven 3. Plugin version is displayed in maven output before the goal is executed. Try to analyze mvn -X release:prepare... – dma_k Jan 4 at 15:57
We had this problem as well, but have since moved over to maven 3 completely, so it isn't a problem anymore. The underlying core of mvn is pretty different from 2-3, and many bugs were fixed, so I don't know if you'll get an answer here. Have you checked Jira for maven? You might find it there. – javamonkey79 Jan 30 at 17:47
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.