在build.xml
中运行ant任务时,Ant构建无法运行。我在控制台中收到以下错误:
Buildfile: F:\Eclipse Projects\my_project\build.xml
[typedef] Could not load definitions from resource org/apache/maven/artifact/ant/antlib.xml. It could not be found.
BUILD FAILED
F:\my_project\build.xml:32: Problem: failed to create task or type antlib:org.apache.maven.artifact.ant:mvn
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
No types or tasks have been defined in this namespace yet
This appears to be an antlib declaration.
Action: Check that the implementing library exists in one of:
-F:\eclipse\plugins\org.apache.ant_1.8.3.v20120321-1730\lib
-C:\Users\Lucky\.ant\lib
-a directory added on the command line with the -lib argument
我将maven-ant-tasks jar文件放在eclipse插件的文件夹和WinAnt ANT_HOME / lib目录中,并且也包含在类路径中。但它并没有解决我的问题,this answer也无法解决问题。
答案 0 :(得分:16)
lib
目录,并将maven-ant-tasks.jar文件放在其中。build.xml
<path id="maven-ant-tasks.classpath" path="lib/maven-ant-tasks-2.1.3.jar" />
<typedef resource="org/apache/maven/artifact/ant/antlib.xml" uri="antlib:org.apache.maven.artifact.ant" classpathref="maven-ant-tasks.classpath" />
以上步骤解决了我的问题。希望这对将来的某个人有所帮助。
替代解决方案,
maven-ant-tasks.jar
文件放在ANT_HOME/lib
文件夹下以解决此问题。eclipse\plugins\org.apache.ant_1.8.3.v20120321-1730\lib
答案 1 :(得分:2)
就我而言,我已将maven-ant-taksk.jar放入目录'eclipse\plugins\org.apache.ant_1.8.3.v20120321-1730\lib'.
我正在使用eclipse,所以我需要的是,在Windows菜单上转到Ant Runtime&gt;偏好&gt;蚂蚁&gt;运行时,选择"Ant Home Entries"
,单击"Ant Home"
按钮e选择Ant主目录
'eclipse\plugins\org.apache.ant_1.8.3.v20120321-1730\lib'
有效!