Developer connection with:
<scm> <developerConnection>scm:svn:https://svn.mycompany.com/repos/myapplication/trunk/mycomponent/</developerConnection> </scm>
should point to your maven project that you want to publish.
In addition, an arbitrary location can be used for the release tag in the plugin configuration:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.2</version> <configuration> <tagBase>https://svn.mycompany.com/repos/myapplication/releases</tagBase> </configuration> </plugin>
You need to read the use page properly (which I didn’t do either) and everything will work fine.
However, I believe that registering plugins should provide more accurate information about the problem (or possible problems).
user2310395
source share