Description
We have switched to the release plug-in 2.0 and are using the prepare goal as we did before using version 2.0-beta-9. Unfortunately, the tag which is now created is copied from the project level, and from the trunk. With version 2.0-beta-9, the tag was correctly copied from the trunk.
With 2.0-beta-9:
/project |-- trunk/ |-- pom.xml |-- src/ |-- tags/ |-- 4.0.1/ (<-- copied from trunk |-- pom.xml |-- src/
With 2.0:
/project |-- trunk/ |-- pom.xml |-- src/ |-- tags/ |-- 4.0.1/ (<-- copied from trunk |-- trunk/ |-- pom.xml |-- src/ |-- tags/ |-- branches/
Our pom.xml SCM information is declared as follow:
<scm> <developerConnection>scm:svn:svn://host/path/project/trunk</developerConnection> </scm>