分类: Python/Ruby
2011-03-04 13:01:55
官方手册链接:
如果没有指定特定的构建脚本,Ant将寻找当前目录下的build.xml,若找到,则把它作为构建脚本运行。若需要指定其他的构建脚本,需要在命令行加入选项 -builfile file,其中,file是你指定的构建脚本名称。
ant [options] [target [target2 [target3] ...]] Options: -help, -h print this message -projecthelp, -p print project help information -version print the version information and exit -diagnostics print information that might be helpful to diagnose or report problems. -quiet, -q be extra quiet -verbose, -v be extra verbose -debug, -d print debugging information -emacs, -e produce logging information without adornments -libant
runs Ant using the build.xml file in the current directory, on the default target.
ant -buildfile test.xml
runs Ant using the test.xml file in the current directory, on the default target.
ant -buildfile test.xml dist
runs Ant using the test.xml file in the current directory, on the target called dist.
ant -buildfile test.xml -Dbuild=build/classes dist
runs Ant using the test.xml file in the current directory, on the target called dist, setting the build property to the value build/classes.
ant -lib /home/ant/extras
runs Ant picking up additional task and support jars from the /home/ant/extras location
ant -lib one.jar;another.jarant -lib one.jar -lib another.jar
adds two jars to Ants classpath.