You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2010/09/28 00:00:59 UTC

svn commit: r1001922 - /maven/plugins/branches/maven-site-plugin-3.x/pom.xml

Author: olamy
Date: Mon Sep 27 22:00:59 2010
New Revision: 1001922

URL: http://svn.apache.org/viewvc?rev=1001922&view=rev
Log:
[MSITE-505] Unable to use SVN SCM wagon to upload a site.

Modified:
    maven/plugins/branches/maven-site-plugin-3.x/pom.xml

Modified: maven/plugins/branches/maven-site-plugin-3.x/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/branches/maven-site-plugin-3.x/pom.xml?rev=1001922&r1=1001921&r2=1001922&view=diff
==============================================================================
--- maven/plugins/branches/maven-site-plugin-3.x/pom.xml (original)
+++ maven/plugins/branches/maven-site-plugin-3.x/pom.xml Mon Sep 27 22:00:59 2010
@@ -179,6 +179,7 @@ under the License.
     <javadocPluginVersion>2.6.1</javadocPluginVersion>
     <projectInfoReportsPluginVersion>2.2</projectInfoReportsPluginVersion>
     <checkstylePluginVersion>2.5</checkstylePluginVersion>
+    <scmVersion>1.4</scmVersion>
   </properties>
 
   <dependencies>
@@ -389,6 +390,24 @@ under the License.
       </exclusions>
     </dependency>
     
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-scm</artifactId>
+      <version>${wagonVersion}</version>
+    </dependency>
+    
+    <!-- adding at least svn -->
+    <dependency>
+      <groupId>org.apache.maven.scm</groupId> 
+      <artifactId>maven-scm-api</artifactId> 
+      <version>${scmVersion}</version>
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.maven.scm</groupId> 
+      <artifactId>maven-scm-provider-svnexe</artifactId> 
+      <version>${scmVersion}</version>
+    </dependency>
+    
     <!-- Plexus -->
     <dependency>
       <groupId>org.codehaus.plexus</groupId>