I am doing work on Maven and Subversion.
I have created a maven project. Now I want to point it to my repository (created by TortoiseSVN). I read in a tutorial on Maven and Subversion that I should change the pom.xml file. Following these instructions, I have added an scm tag, like this:
<scm>
<connection>scm:svn:svn+ssh://file:///E:/my-app-repos/trunk</connection>
<developerConnection>scm:svn:svn+ssh://file:///E:/my-app-repos/trunk</developerConnection>
<url>scm:svn:svn+ssh://file:///E:/my-app-repos/trunk</url>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>svn+ssh://file:///E:/my-app-reposs</tagBase>
</configuration>
</plugin>
</plugins>
</build>
But then, when I a try to mvn release:prepare, I get an error:
fail to execute goal org.apache.maven.plugins
What could be going on?