0

这是为了在 Eclipse 中运行 Ant 构建的文件。我已经设置好了 Ant,现在我需要安装 Maven Ant 任务。我按照 Maven 网站上的说明进行操作:下载 JAR 并将其放入我的 .ant/lib 中,并仔细检查我的环境变量是否正确。但是,当我尝试在 Eclipse 中作为 Ant 构建运行时,它给了我这个错误:

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:
    -C:\Users\arempel\Documents\eclipse\eclipse\plugins\org.apache.ant_1.8.3.v201301120609\lib
    -C:\Users\arempel\.ant\lib
    -a directory added on the command line with the -lib argument

现在我知道有很多像这样的已解决问题已经得到解答,但我已经尝试了所有我能找到的解决方案,但都无济于事。我尝试过在提示符中使用 -lib,尝试设置classpath变量,尝试使用我的环境变量,但我仍然以某种方式搞砸了。

有谁知道我做错了什么,我错过了什么?

4

1 回答 1

1

在 Eclipse 中运行 Ant 时,管理 Ant 的类路径的是 Eclipse 本身。

查看 Eclipse 的全局首选项,然后查看 Ant/Runtime 面板。第一个选项卡“类路径”是您要修改的选项卡。单击“全局条目”,然后单击“添加 JAR...”按钮。选择 Maven Ant Tasks 的 jar,就完成了。

于 2013-06-21T20:21:12.767 回答