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.
crcib-6.8.2andcrcib-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:48mvn -X release:prepare... – dma_k Jan 4 at 15:57