I guess Maven "conventionally" uses Git.

This is what I have in my parent POM. Change connections to point to your SVN's 
trunk or release branch.

<project>
        <scm>
                
<connection>scm:git:ssh://git@xxxxx/usr/local/git_repos/projectXYZ.git</connection>
                
<developerConnection>scm:git:ssh://git@xxxxx/usr/local/git_repos/projectXYZ.git</developerConnection>
                <tag>HEAD</tag>
        </scm>
</project>




-----Original Message-----
From: nivea
Sent: July-10-12 1:02 PM
        Subject: maven release plugin uses "git add" instead of svn commit

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

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

Reply via email to