fix MPSITE-22 : site:ftpdeploy does nothing
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@179455 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0cb2b13af1
commit
54624a1258
@ -124,6 +124,17 @@
|
|||||||
description="Deploy the generated site docs using ftp">
|
description="Deploy the generated site docs using ftp">
|
||||||
|
|
||||||
<!-- FTP to the server -->
|
<!-- 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}"
|
<ftp server="${siteAddress}"
|
||||||
userid="${siteUsername}"
|
userid="${siteUsername}"
|
||||||
password="${maven.password}"
|
password="${maven.password}"
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
/*
|
/*
|
||||||
* Copyright 2001-2004 The Apache Software Foundation.
|
* Copyright 2001-2004 The Apache Software Foundation.
|
||||||
@ -17,7 +16,6 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<project>
|
<project>
|
||||||
<extend>../plugin-parent/project.xml</extend>
|
<extend>../plugin-parent/project.xml</extend>
|
||||||
<pomVersion>3</pomVersion>
|
<pomVersion>3</pomVersion>
|
||||||
@ -72,6 +70,15 @@
|
|||||||
<role>Developer</role>
|
<role>Developer</role>
|
||||||
</roles>
|
</roles>
|
||||||
</developer>
|
</developer>
|
||||||
|
<developer>
|
||||||
|
<name>Arnaud Heritier</name>
|
||||||
|
<id>aheritier</id>
|
||||||
|
<email>aheritier@apache.org</email>
|
||||||
|
<organization>ASF</organization>
|
||||||
|
<roles>
|
||||||
|
<role>Developer</role>
|
||||||
|
</roles>
|
||||||
|
</developer>
|
||||||
</developers>
|
</developers>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -79,10 +86,29 @@
|
|||||||
<artifactId>commons-lang</artifactId>
|
<artifactId>commons-lang</artifactId>
|
||||||
<version>2.0</version>
|
<version>2.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>ant</groupId>
|
||||||
|
<artifactId>ant-commons-net</artifactId>
|
||||||
|
<version>1.6.4</version>
|
||||||
|
<properties>
|
||||||
|
<classloader>root</classloader>
|
||||||
|
</properties>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>commons-net</groupId>
|
<groupId>commons-net</groupId>
|
||||||
<artifactId>commons-net</artifactId>
|
<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>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<versions>
|
<versions>
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
/*
|
/*
|
||||||
* Copyright 2001-2004 The Apache Software Foundation.
|
* Copyright 2001-2004 The Apache Software Foundation.
|
||||||
@ -17,7 +16,6 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<document>
|
<document>
|
||||||
<properties>
|
<properties>
|
||||||
<title>Changes</title>
|
<title>Changes</title>
|
||||||
@ -25,6 +23,7 @@
|
|||||||
</properties>
|
</properties>
|
||||||
<body>
|
<body>
|
||||||
<release version="1.6.1-SNAPSHOT" date="in SVN">
|
<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">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="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>
|
<action dev="brett" type="change">Remove -v option from rsync by default</action>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user