如何在ftp任务的构建文件中指定类路径

时间:2013-02-21 07:27:40

标签: apache ant build ftp

我想直接在Ant Build脚本中指定fpt任务的类路径。我尝试了以下方法:

<target name="ftp-upload" depends="build-html">     
   <echo message="Ftp upload started with user ${user}" />
<ftp verbose="yes" 
            remotedir="${ftp.dir}" 
    server="${server}"
            userid="${user}" 
    password="${password}" 
    depends="yes">
      <fileset dir="${mystuff.dir}/.." />
     <classpath refid="build.classpath" />
</ftp>
</target>

<target name="ftp-upload" depends="build-html">     
 <echo message="Ftp upload started with user ${user}" />
<ftp verbose="yes" 
            remotedir="${ftp.dir}" 
    server="${server}"
            userid="${user}" 
    password="${password}" 
    depends="yes"
            classpathref="build.classpath"
     >
      <fileset dir="${mystuff.dir}/.." />
</ftp>
</target>

第一种方法给出了以下错误消息:

Could not create type ftp due to java.lang.NoClassDefFoundError:      org/apache/commons/net/ftp/FTPClientConfig

第二种方法给出了以下错误消息:

ftp doesn't support the "classpathref" attribute

是否可以在构建脚本中为ftp任务设置类路径,还是必须在我的服务器上的构建脚本之外进行?将构建脚本自包含会很高兴。

解决方案:

只需使用类路径引用重新定义ftp任务:

<taskdef name="ftp" classname="org.apache.tools.ant.taskdefs.optional.net.FTP">
 <classpath>
    <pathelement location="\lib\commons-net-1.4.0.jar"/>
 </classpath>
</taskdef>

1 个答案:

答案 0 :(得分:1)

您是否尝试过在How to load an optional task into ant without -lib or global installation?评论的解决方案?

前段时间我遇到了类似的问题,我解决了它添加一个新的类加载器。

此致