Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.xml 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0"?>
  2. <project name="runtime" default="all" basedir=".">
  3. <import file="../build/build-common.xml"/>
  4. <path id="runtime.test.src.path">
  5. <fileset dir="${basedir}/../lib">
  6. <include name="junit/*.jar"/>
  7. </fileset>
  8. <path refid="runtime.src.path"/>
  9. </path>
  10. <path id="runtime.src.path">
  11. </path>
  12. <target name="compile" depends="init">
  13. <srccompile project="runtime" path="runtime.src.path"/>
  14. </target>
  15. <target name="test:compile" depends="compile">
  16. <testcompile project="runtime" path="runtime.test.src.path"/>
  17. </target>
  18. <target name="test" depends="test:compile">
  19. <testrun project="runtime" path="runtime.test.src.path" suite="RuntimeModuleTests"/>
  20. </target>
  21. <target name="all" depends="init, compile, test:compile"/>
  22. <target name="jar" depends="compile">
  23. <delete file="${build.ajdir}/jars/aspectjrt.jar"/>
  24. <copy file="runtime.mf.txt" todir="${build.ajdir}/temp" filtering="yes"/>
  25. <jar destfile="${build.ajdir}/jars/aspectjrt.jar" manifest="${build.ajdir}/temp/runtime.mf.txt">
  26. <fileset dir="bin">
  27. <include name="**/*"/>
  28. </fileset>
  29. </jar>
  30. </target>
  31. </project>