ant失败未知参数:-buildfile = build.xml

时间:2014-08-01 07:08:40

标签: java xml shell ant

这个问题可能是基本问题,但我不确定为什么会收到此错误: 尝试在shell脚本中运行ant时,未知参数:-buildfile = build.xml

我正在使用:
Ant-Version :1.9.3
Os :Linux
Java版本:1.7.0_65

我正在尝试在shell脚本文件中运行ant,如下所示:
ant -Dfile1 = file1 -Dfile2 = file2 -buildfile = build.xml -verbose。

谢谢和问候,
维杰雷迪。

1 个答案:

答案 0 :(得分:1)

来自Running Apache Ant

ant [options] [target [target2 [target3] ...]]

Options:
...
-buildfile <file>      use given buildfile

因此=-buildfile之间不应该有<file,而是space

而不是你的:

ant -Dfile1=file1 -Dfile2=file2 -buildfile=build.xml -verbose

尝试:

ant -Dfile1=file1 -Dfile2=file2 -buildfile build.xml -verbose