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 2009/09/03 09:58:39 UTC

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

Author: olamy
Date: Thu Sep  3 07:58:39 2009
New Revision: 810799

URL: http://svn.apache.org/viewvc?rev=810799&view=rev
Log:
add back wagon providers which are not anymore in core to be able to deploy with scp/scpexe/ftp/webdav
Note : currently webdav deployment failed with a CNFE (need more investigation)

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=810799&r1=810798&r2=810799&view=diff
==============================================================================
--- maven/plugins/branches/maven-site-plugin-3.x/pom.xml (original)
+++ maven/plugins/branches/maven-site-plugin-3.x/pom.xml Thu Sep  3 07:58:39 2009
@@ -281,6 +281,27 @@
       <artifactId>wagon-provider-api</artifactId>
       <version>${wagonVersion}</version>
     </dependency>
+    <!-- providers not anymore in core  -->
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-ssh</artifactId>
+      <version>${wagonVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-ssh-external</artifactId>
+      <version>${wagonVersion}</version>
+    </dependency>    
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-ftp</artifactId>
+      <version>${wagonVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-webdav-jackrabbit</artifactId>
+      <version>${wagonVersion}</version>
+    </dependency>                       
 
     <!-- Plexus -->
     <dependency>
@@ -414,20 +435,6 @@
       </build>
     </profile>
     <profile>
-      <id>dev</id>
-      <build>
-        <pluginManagement>
-          <plugins>
-            <plugin> 
-              <groupId>org.apache.maven.plugins</groupId>
-              <artifactId>maven-site-plugin</artifactId>
-              <version>${project.version}</version>
-            </plugin>
-          </plugins>
-        </pluginManagement>
-      </build>
-    </profile>
-    <profile>
       <id>reporting</id>
       <build>
         <pluginManagement>
@@ -559,6 +566,26 @@
         </plugins>
       </build>
     </profile>
+    <profile>
+      <id>dev</id>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <plugin> 
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-site-plugin</artifactId>
+              <version>${project.version}</version>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
+    </profile>    
   </profiles>
-  <!--  test  -->
+  
+  <distributionManagement>
+    <site>
+      <id>apache.website</id>
+      <url>scp://people.apache.org/home/olamy/public_html/test</url>
+    </site>  
+  </distributionManagement>
 </project>