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.

123456789101112131415161718192021222324252627282930313233
  1. <!-- ajc-ant script, not to be used from Ant commant line - see AntSpec -->
  2. <project name="ltw">
  3. <!-- using this we can debug the forked VM -->
  4. <property
  5. name="jdwp"
  6. value="-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005"/>
  7. <target name="TestServer with HelloWorld">
  8. <copy file="${aj.root}/tests/ltw/server-helloworld.properties"
  9. tofile="${aj.sandbox}/server.properties"/>
  10. <java fork="yes" classname="org.aspectj.testing.server.TestServer" failonerror="yes">
  11. <classpath refid="aj.path"/>
  12. <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/>
  13. <jvmarg value="-Daj.weaving.verbose=true"/>
  14. <jvmarg value="-Dorg.aspectj.weaver.showWeaveInfo=true"/>
  15. <arg path="${aj.sandbox}"/>
  16. </java>
  17. </target>
  18. <target name="TestServer with Parent and Child">
  19. <copy file="${aj.root}/tests/ltw/server-parentandchild.properties"
  20. tofile="${aj.sandbox}/server.properties"/>
  21. <java fork="yes" classname="org.aspectj.testing.server.TestServer" failonerror="yes">
  22. <classpath refid="aj.path"/>
  23. <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/>
  24. <jvmarg value="-Daj.weaving.verbose=true"/>
  25. <jvmarg value="-Dorg.aspectj.weaver.showWeaveInfo=true"/>
  26. <arg path="${aj.sandbox}"/>
  27. </java>
  28. </target>
  29. </project>