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-server.xml 1.3KB

1234567891011121314151617181920212223242526272829
  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 duplicate configuration">
  8. <copy file="${aj.root}/tests/bugs153/pr157474/server-applicationandlibrary.properties"
  9. tofile="${aj.sandbox}/server.properties"/>
  10. <mkdir dir="${aj.sandbox}/Application"/>
  11. <copy file="${aj.root}/tests/bugs153/pr157474/aop-application.xml"
  12. tofile="${aj.sandbox}/Application/META-INF/aop.xml"/>
  13. <java fork="yes" classname="org.aspectj.testing.server.TestServer" failonerror="yes">
  14. <classpath refid="aj.path"/>
  15. <jvmarg value="-javaagent:${aj.root}/lib/test/loadtime5.jar"/>
  16. <jvmarg value="-Daj.weaving.verbose=true"/>
  17. <jvmarg value="-Dorg.aspectj.weaver.showWeaveInfo=true"/>
  18. <!-- <jvmarg value="${aj.addOpensKey}"/>-->
  19. <!-- <jvmarg value="${aj.addOpensValue}"/>-->
  20. <!-- <jvmarg value="-Dorg.aspectj.testing.server.debug=true"/>-->
  21. <arg path="${aj.sandbox}"/>
  22. </java>
  23. </target>
  24. </project>