You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.ant 482 B

12345678910111213141516171819202122
  1. <?xml version="1.0"?>
  2. <!-- Comment outside of project -->
  3. <project name="Ant" default="default">
  4. <!-- Comment inside of project -->
  5. <description>Primary buildfile for building Ant itself</description>
  6. <property name="foo" value="true"/>
  7. <target name="default" depends="main">
  8. <echo text="Default Target is Executing"/>
  9. <buildtarget target="main" if="foo"/>
  10. </target>
  11. <target name="main">
  12. <echo text="Main Target is Executing"/>
  13. </target>
  14. </project>