In the parent pom.xml I have specified the scm url that points to the svn
location. How do I force release plugin to use svn as the scm and not git.

My configuration for release plugin:

<plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
                <mavenExecutorId>forked-path</mavenExecutorId>
                <arguments>-Prelease</arguments>
                <pushChanges>false</pushChanges>
                <providerImplementations>
            <svn>javasvn</svn>
        </providerImplementations>
        </configuration>
        <dependencies>
                <dependency>
                        
<groupId>com.google.code.maven-scm-provider-svnjava</groupId>
                        <artifactId>maven-scm-provider-svnjava</artifactId>
                        <version>2.0.3</version>
                </dependency>
        </dependencies> 
</plugin>


--
View this message in context: 
http://maven.40175.n5.nabble.com/maven-release-plugin-uses-git-add-instead-of-svn-commit-tp5713686.html
Sent from the Maven - Users mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org

Reply via email to