You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2012/01/12 14:28:16 UTC

svn commit: r1230519 - /directory/studio/tags/2.0.0.v20120111/pom.xml

Author: pamarcelot
Date: Thu Jan 12 13:28:16 2012
New Revision: 1230519

URL: http://svn.apache.org/viewvc?rev=1230519&view=rev
Log:
Added support for 'scp', 'scpexe', 'sftp' site deployments to avoid to following error while deploying the website:

Unsupported protocol: 'scpexe' for site deployment (...).

Modified:
    directory/studio/tags/2.0.0.v20120111/pom.xml

Modified: directory/studio/tags/2.0.0.v20120111/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/tags/2.0.0.v20120111/pom.xml?rev=1230519&r1=1230518&r2=1230519&view=diff
==============================================================================
--- directory/studio/tags/2.0.0.v20120111/pom.xml (original)
+++ directory/studio/tags/2.0.0.v20120111/pom.xml Thu Jan 12 13:28:16 2012
@@ -1733,6 +1733,20 @@
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>
         <artifactId>maven-site-plugin</artifactId>
+        <dependencies>
+          <!-- Add support for 'scp'/'sftp' -->
+          <dependency>
+            <groupId>org.apache.maven.wagon</groupId>
+            <artifactId>wagon-ssh</artifactId>
+            <version>2.1</version>
+          </dependency>
+          <!-- Add support for 'scpexe' -->
+          <dependency>
+            <groupId>org.apache.maven.wagon</groupId>
+            <artifactId>wagon-ssh-external</artifactId>
+            <version>2.1</version>
+          </dependency>
+        </dependencies>
         <configuration>
           <reportPlugins>
             <plugin>