Without your pom.xml it's hard to understand what the problem is.
The most obvious misconfiguration probably relates to scm, as Wemu said;
<scm> <url>scm:svn:http://svn.my.company.com/repository</url> <connection>scm:svn:http://svn.my.company.com/repository/trunk/my-project</connection> <developerConnection>scm:svn:http://svn.my.company.com/repository/trunk/my-project</developerConnection> </scm>
This is the version and how I use this plugin:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.2.2</version> <configuration> <tagBase>svn.my.company.com/repository/tags</tagBase> </configuration> </plugin>
When you use the maven release plugin, it will change your scm configuration to point to tags. If this is really a maven 3 problem, I never noticed it.
Could you post pom.xml (and settings.xml) for further analysis?
source share