3

我想直接在我的 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>
4

1 回答 1

1

您是否尝试过如何在没有 -lib 或全局安装的情况下将可选任务加载到 ant 中评论的解决方案??

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

问候

于 2013-02-21T08:17:25.273 回答