在ant中传递build.xml的位置

时间:2010-09-22 15:08:26

标签: linux ant

我正在尝试运行使用ANT构建的脚本,但我不想从build.xml文件所在的位置运行它。有没有办法将位置传递给蚂蚁?

1 个答案:

答案 0 :(得分:3)

使用-buildfile选项。例如,

$ cd /some/other/directory/
$ ant -buildfile /path/to/build/file.xml

有两个同义选项,-file-f。因此,您可以使用

之一
$ ant -file /path/to/build/file.xml

$ ant -f /path/to/build/file.xml