使用FTP Ant任务部署Maven站点

时间:2009-08-10 15:00:54

标签: maven-2 ant ftp deployment

我正在尝试将Maven站点部署到FTP服务器。我在我的pom.xml中使用以下代码:

<plugin>
 <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
<executions>
    <execution>
    <id>ftp</id>
    <phase>post-site</phase>
    <configuration>
        <tasks>
            <ftp action="del" server="nexus"
        remotedir="/pub/${project.groupId}/${project.artifactId}"
        userid="anonymous" password="my.name@gmail.com"
        skipFailedTransfers="true" ignoreNoncriticalErrors="true">
        <fileset>
                <include name="**/" />
        </fileset>
            </ftp>
        <ftp action="rmdir" server="nexus"
             remotedir="/pub/${project.groupId}/${project.artifactId}"
        userid="anonymous" password="my.name@gmail.com"
        skipFailedTransfers="true" ignoreNoncriticalErrors="true">
             <fileset>
            <include name="**/" />
             </fileset>
        </ftp>
        <ftp action="mkdir" server="nexus"
        remotedir="/pub/${project.groupId}/${project.artifactId}"
        userid="anonymous" password="my.name@gmail.com" depends="yes"
        verbose="no" chmod="777">
        </ftp>
    </tasks>
     </configuration>
     <goals>
    <goal>run</goal>
     </goals>
      </execution>
 </executions>
 </plugin>

这里我删除了以前部署的站点,并在站点后阶段为站点创建了一个新目录,以便部署具有所需的结构。 问题是它第一次不起作用 - 当要删除的文件夹不存在时。在第一次我必须手动创建目录,以便它可以工作。 在第一次运作良好之后。

我的问题是如何在尝试删除目录之前检查目录是否存在。

谢谢, 罗南。

1 个答案:

答案 0 :(得分:2)

在调用 ftp del 任务之前,您可以先执行 ftp mkdir ,这样可以确保该目录在删除之前存在。当然,如果目录已经存在,那么可能会失败。我无法对此进行测试,但根据docs,如果目录存在,添加 ignoreNoncriticalErrors =“true”可能会让mkdir失败。

例如:

<ftp action="mkdir"
  server="nexus"
  userid="anonymous"
  password="my.name@gmail.com"
  remotedir="/pub/${project.groupId}/${project.artifactId}"
  ignoreNoncriticalErrors="true"/>

更新:从Ftp.java起,它看起来会起作用:

/**
 * Create the specified directory on the remote host.
 *
 * @param ftp The FTP client connection
 * @param dir The directory to create (format must be correct for host
 *      type)
 * @throws IOException  in unknown circumstances
 * @throws BuildException if ignoreNoncriticalErrors has not been set to true
 *         and a directory could not be created, for instance because it was
 *         already existing. Precisely, the codes 521, 550 and 553 will trigger
 *         a BuildException
 */
protected void makeRemoteDir(FTPClient ftp, String dir)
    throws IOException, BuildException {
    ...