1 <?xml version="1.0" ?> 2 <project default="test"> 3 <target name="test"/> 4 </project>
运行结果:
C:UsersxiongjiaweiDesktopingant_demo>ant
Buildfile: C:UsersxiongjiaweiDesktopingant_demouild.xml
test:
BUILD SUCCESSFUL
Total time: 0 seconds
注解:
顶级project元素,default属性用于指定ANT被调用时未指定目标时执行的默认目标,用target元素来指定目标本身。