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.

ant.xml 696B

123456789101112131415161718
  1. <project name="ltw with funny libraries" default="default" basedir=".">
  2. <target name="default" >
  3. <echo> This script builds the AspectJ examples. </echo>
  4. <taskdef resource="org/aspectj/tools/ant/taskdefs/aspectjTaskdefs.properties">
  5. <classpath>
  6. <pathelement path="${aj.root}/lib/aspectj/aspectjtools.jar"/>
  7. </classpath>
  8. </taskdef>
  9. <iajc destdir="${classes.dir}" argfiles="${list}"
  10. fork="true"
  11. forkclasspath="${aspectjtools.jar}"
  12. classpath="${aspectjrt.jar}"/>
  13. <antcall target="Ajx-run" >
  14. <param name="class" value="${class}"/>
  15. </antcall>
  16. </target>
  17. </project>