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

build.xml 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0"?>
  2. <project name="aspectj" basedir="." default="all">
  3. <!-- a root build.xml that redirects to build/build-ant.xml for convenience so that ones can type
  4. "ant .." straight in the modules/ root -->
  5. <target name="clean">
  6. <subant target="clean">
  7. <fileset dir="." includes="build/build-ant.xml"/>
  8. </subant>
  9. </target>
  10. <target name="cleanall">
  11. <subant target="cleanall">
  12. <fileset dir="." includes="build/build-ant.xml"/>
  13. </subant>
  14. </target>
  15. <target name="all">
  16. <subant target="all">
  17. <fileset dir="." includes="build/build-ant.xml"/>
  18. </subant>
  19. </target>
  20. <target name="compile">
  21. <subant target="compile">
  22. <fileset dir="." includes="build/build-ant.xml"/>
  23. </subant>
  24. </target>
  25. <target name="test">
  26. <subant target="test">
  27. <fileset dir="." includes="build/build-ant.xml"/>
  28. </subant>
  29. </target>
  30. <target name="jar">
  31. <subant target="jar">
  32. <fileset dir="." includes="build/build-ant.xml"/>
  33. </subant>
  34. </target>
  35. </project>