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