You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ah...@apache.org on 2005/06/02 01:12:51 UTC

svn commit: r179455 - in /maven/maven-1/plugins/trunk/site: plugin.jelly project.xml xdocs/changes.xml

Author: aheritier
Date: Wed Jun  1 16:12:51 2005
New Revision: 179455

URL: http://svn.apache.org/viewcvs?rev=179455&view=rev
Log:
fix MPSITE-22 : site:ftpdeploy does nothing

Modified:
    maven/maven-1/plugins/trunk/site/plugin.jelly
    maven/maven-1/plugins/trunk/site/project.xml
    maven/maven-1/plugins/trunk/site/xdocs/changes.xml

Modified: maven/maven-1/plugins/trunk/site/plugin.jelly
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/site/plugin.jelly?rev=179455&r1=179454&r2=179455&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/site/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/site/plugin.jelly Wed Jun  1 16:12:51 2005
@@ -124,6 +124,17 @@
     description="Deploy the generated site docs using ftp">
 
     <!-- FTP to the server -->
+    <taskdef
+      name="ftp"
+      classname="org.apache.tools.ant.taskdefs.optional.net.FTP"
+    >
+      <classpath>
+        <pathelement path="${plugin.getDependencyPath('ant')}"/>
+        <pathelement path="${plugin.getDependencyPath('ant-commons-net')}"/>
+        <pathelement path="${plugin.getDependencyPath('commons-net')}"/>
+        <pathelement path="${plugin.getDependencyPath('oro')}"/>
+      </classpath>
+    </taskdef>
     <ftp server="${siteAddress}"
     	 userid="${siteUsername}"
     	 password="${maven.password}"

Modified: maven/maven-1/plugins/trunk/site/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/site/project.xml?rev=179455&r1=179454&r2=179455&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/site/project.xml (original)
+++ maven/maven-1/plugins/trunk/site/project.xml Wed Jun  1 16:12:51 2005
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!-- 
 /*
  * Copyright 2001-2004 The Apache Software Foundation.
@@ -17,7 +16,6 @@
  * limitations under the License.
  */
  -->
-
 <project>
   <extend>../plugin-parent/project.xml</extend>
   <pomVersion>3</pomVersion>
@@ -72,6 +70,15 @@
         <role>Developer</role>
       </roles>
     </developer>
+    <developer>
+      <name>Arnaud Heritier</name>
+      <id>aheritier</id>
+      <email>aheritier@apache.org</email>
+      <organization>ASF</organization>
+      <roles>
+        <role>Developer</role>
+      </roles>
+    </developer>  
   </developers>
   <dependencies>
     <dependency>
@@ -80,9 +87,28 @@
       <version>2.0</version>
     </dependency>
     <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant-commons-net</artifactId>
+      <version>1.6.4</version>
+      <properties>
+        <classloader>root</classloader>
+      </properties>
+    </dependency>
+    <dependency>
       <groupId>commons-net</groupId>
       <artifactId>commons-net</artifactId>
-      <version>1.1.0</version>
+      <version>1.4.0</version>
+      <properties>
+        <classloader>root</classloader>
+      </properties>
+    </dependency>
+    <dependency>
+      <groupId>oro</groupId>
+      <artifactId>oro</artifactId>
+      <version>2.0.8</version>
+      <properties>
+        <classloader>root</classloader>
+      </properties>
     </dependency>
   </dependencies>
   <versions>

Modified: maven/maven-1/plugins/trunk/site/xdocs/changes.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/site/xdocs/changes.xml?rev=179455&r1=179454&r2=179455&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/site/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/site/xdocs/changes.xml Wed Jun  1 16:12:51 2005
@@ -1,5 +1,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
-
 <!-- 
 /*
  * Copyright 2001-2004 The Apache Software Foundation.
@@ -17,7 +16,6 @@
  * limitations under the License.
  */
  -->
-
 <document>
   <properties>
     <title>Changes</title>
@@ -25,6 +23,7 @@
   </properties>
   <body>
     <release version="1.6.1-SNAPSHOT" date="in SVN">
+      <action dev="aheritier" type="fix" issue="MPSITE-22">Goal site:ftpdeploy does nothing</action>
       <action dev="brett" type="fix">In SSH mode do not continue with other commands if any prior commands have failed</action>
       <action dev="brett" type="fix" issue="MPSITE-23" due-to="Oscar Picasso">Corrected rsync behaviour in some environments</action>
       <action dev="brett" type="change">Remove -v option from rsync by default</action>



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org