gpt4 book ai didi

java - BUILD FAILED D :\opt\trunk\build. xml:117: 无法创建任务或类型:对于

转载 作者:数据小太阳 更新时间:2023-10-29 02:36:51 26 4
gpt4 key购买 nike

我已将 antcontrib.03.jar 添加到 ANT_HOME/lib 和单独的位置 d:\lib 中,它仍然给我这个错误。请在这里帮助我。谢谢!

build.properties

#back-end - copy
back.end.dir=d:/opt/polopoly/pear/work/ears/front
path.to.tomcat.dir=${back.end.dir}/tomcat1,${back.end.dir}/tomcat2,${back.end.dir}/tomcat3, ${back.end.dir}/tomcat3,${back.end.dir}/tomcat4,${back.end.dir}/tomcat5
root.war.file=${path.to.tomcat.dir}/test1.war,${path.to.tomcat.dir}/test2.war,${path.to.tomcat.dir}/test3.war,${path.to.tomcat.dir}/test4.war,${path.to.tomcat.dir}/test5.war

#front-end -paste
host.name=//servername/share
path.to.tomcat.webapps=${host.name}/opt/tomcat/webapps

build.xml

<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="d:/lib/ant-contrib-0.3.jar"/>
</classpath>
</taskdef>

<!-- copy new ROOT.war file -->
<target name="deploy-root" description="Copy new root.war from pCMS back-end to front-end" depends="prepare">
<sequential>
<for list="${root.war.file}" param="single-file">
<echo> Copying File @{single-file} </echo>
<copy file="@{single-file}" todir="${path.to.tomcat.webapps}" overwrite="true" />
</for>
</sequential>
</target>

输出错误

D:\opt\trunk>ant deploy-root
Buildfile: build.xml
[taskdef] Could not load definitions from resource lib/net/sf/antcontrib/antcontrib.properties. It could not be found.

init:
[echo] TODAYS DATE AND TIME: 2 May 2012, 12:16:28 PM, BST

prepare:

deploy-root:

BUILD FAILED
D:\opt\trunk\build.xml:117: Could not create task or type of type: for.

Ant could not find the task or a class this task relies upon.

This is common and has a number of causes; the usual
solutions are to read the manual pages then download and
install needed JAR files, or fix the build file:
- You have misspelt 'for'.
Fix: check your spelling.
- The task needs an external JAR file to execute
and this is not found at the right place in the classpath.
Fix: check the documentation for dependencies.
Fix: declare the task.
- The task is an Ant optional task and the JAR file and/or libraries
implementing the functionality were not found at the time you
yourself built your installation of Ant from the Ant sources.
Fix: Look in the ANT_HOME/lib for the 'ant-' JAR corresponding to the
task and make sure it contains more than merely a META-INF/MANIFEST.MF.
If all it contains is the manifest, then rebuild Ant with the needed
libraries present in ${ant.home}/lib/optional/ , or alternatively,
download a pre-built release version from apache.org
- The build file was written for a later version of Ant
Fix: upgrade to at least the latest release version of Ant
- The task is not an Ant core or optional task
and needs to be declared using <taskdef>.
- You are attempting to use a task defined using
<presetdef> or <macrodef> but have spelt wrong or not
defined it at the point of use

Remember that for JAR files to be visible to Ant tasks implemented
in ANT_HOME/lib, the files must be in the same directory or on the
classpath

Please neither file bug reports on this problem, nor email the
Ant mailing lists, until all of these causes have been explored,
as this is not an Ant bug.

最佳答案

使用:

<taskdef resource="net/sf/antcontrib/antlib.xml">
<classpath>
<pathelement location="d:/lib/ant-contrib-0.3.jar"/>
</classpath>
</taskdef>

相反。
antcontrib.properties 文件只有 1.6 之前的 ant 版本的任务定义,即 <for>不包含

关于java - BUILD FAILED D :\opt\trunk\build. xml:117: 无法创建任务或类型:对于,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10412680/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com