|
Maven2DistributionManagementOnGooglecode
How to configure maven2 distributionManagement to upload release on googlecode.com .
maven2, distributionManagement, googlecodeproject, configuration, upload, release, Featured Configure distributionManagement in your pom.xml file
<distributionManagement>
<!-- use the following if you're not using a snapshot version. -->
<repository>
<id>raisercostin.googlecode.releases</id>
<name>raisercostin.googlecode.releases</name>
<url>dav:https://raisercostin.googlecode.com/svn/maven2/</url>
</repository>
<!-- use the following if you ARE using a snapshot version. -->
<snapshotRepository>
<id>raisercostin.googlecode.snapshots</id>
<name>raisercostin.googlecode.snapshots</name>
<url>dav:https://raisercostin.googlecode.com/svn/maven2-snapshots/</url>
</snapshotRepository>
</distributionManagement> <servers>
<server>
<id>raisercostin.googlecode.releases</id>
<username>raisercostin</username>
<password>*******</password>
</server>
<server>
<id>raisercostin.googlecode.snapshots</id>
<username>raisercostin</username>
<password>*******</password>
</server>
</servers>
|
► Sign in to add a comment
Well ... I've tried this procedure, but it fails when doing a mvn deploy with the following error message :
Well ... a little googling solved (in theory) my issue : http://agileshrugged.com/blog/?p=34 : a simple update to maven 2.0.9 is enough