How to deploy maven artifact to Google code svn?
I. Create m2 folder with releases and snaphots subfolders
II. Add dependency to maven-svn-wagon
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.5</version>
<dependencies>
<dependency>
<groupId>com.google.code.maven-svn-wagon</groupId>
<artifactId>maven-svn-wagon</artifactId>
<version>1.4</version>
</dependency>
</dependencies>
</plugin>
III. Add the path to the release and the snapshot repository
<distributionManagement>
<repository>
<id>project-name.googlecode.com</id>
<url>svn:https://project-name.googlecode.com/svn/m2/releases</url>
</repository>
<snapshotRepository>
<id>project-name.googlecode.com</id>
<url>svn:https://project-name.googlecode.com/svn/m2/snapshots</url>
</snapshotRepository>
</distributionManagement>
IV. Don't forget to add to settings.xml your auth. code
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>project-name.googlecode.com</id>
<username>yourlogin</username>
<password>yoursvpassword</password>
</server>
</servers>
</settings>
V. Do what you usually do for generating a site (you may consider having a look at maven-svn-wagon pom file with settings for maven-site-plugin)
VI. mvn clean deploy
Example of such pom
Also, might be helpful: maven-repository-for-google-code-project, maven svn wagon, MavenRepositoryInsideGoogleCode