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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0"?>
  2. <project name="run-all-junit-tests" basedir="build" default="all">
  3. <!-- redirect to build/build.xml to build from modules root -->
  4. <!-- user should still set up build/local.properties -->
  5. <property name="aspectj.modules.dir" location="${basedir}/.."/>
  6. <macrodef name="aj-ant">
  7. <attribute name="target"/>
  8. <sequential>
  9. <ant inheritAll="false" target="@{target}" dir="${basedir}"/>
  10. </sequential>
  11. </macrodef>
  12. <target name="patch">
  13. <cvs output="patch">
  14. <commandline>
  15. <argument line="-q diff -u -N"/>
  16. </commandline>
  17. </cvs>
  18. </target>
  19. <target name="clean">
  20. <aj-ant target="clean"/>
  21. </target>
  22. <target name="cleanall">
  23. <aj-ant target="clean"/>
  24. </target>
  25. <target name="all">
  26. <aj-ant target="all"/>
  27. </target>
  28. <target name="compile">
  29. <aj-ant target="all"/>
  30. </target>
  31. <target name="test">
  32. <aj-ant target="test"/>
  33. </target>
  34. <target name="jar">
  35. <aj-ant target="all"/>
  36. </target>
  37. </project>