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.

spring-1.2.6.xml 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0"?>
  2. <!--
  3. Copyright 2006 contributors.
  4. All rights reserved.
  5. This program and the accompanying materials are made available
  6. under the terms of the Eclipse Public License v 2.0
  7. which accompanies this distribution and is available at
  8. https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt
  9. Contributors: Adrian Colyer
  10. -->
  11. <project name="spring-1.2.6" default="spring-1.2.6-usage">
  12. <!-- imported by master build.xml when using the springframework 1.2.6
  13. source tree as the basis for profiling the compiler -->
  14. <target name="spring-1.2.6-usage">
  15. <echo message="this file contains only path definitions"/>
  16. <echo message="these are used to customize the target application used by"/>
  17. <echo message="the profiling tests. Set the target.application.definitions.file"/>
  18. <echo message="property to point to your own replacement of this file to"/>
  19. <echo message="profile compilation of an alternate project"/>
  20. </target>
  21. <!-- any target.application.definitions.file must define the following paths:
  22. * source.roots (used for from source and ajdt compilation tests)
  23. * build.class.path (the class path needed to build the application)
  24. it must also define the copy.source.files target needed by the ajdt build
  25. -->
  26. <!-- the source roots used for compilation. -->
  27. <path id="source.roots">
  28. <pathelement location="${spring.install.dir}/src"/>
  29. <pathelement location="${spring.install.dir}/tiger/src"/>
  30. <pathelement location="${test.aspects.src.dir}"/>
  31. </path>
  32. <!-- the classpath needed for compilation -->
  33. <path id="build.class.path">
  34. <fileset dir="${spring.install.dir}">
  35. <include name="**/*.jar"/>
  36. <exclude name="aspectj/*.jar"/>
  37. </fileset>
  38. </path>
  39. <!-- the source files used for AJDT project-based compilation -->
  40. <!--<target name="copy.source.files" depends="init">
  41. <echo message="copying source files to ${todir}"/>
  42. <copy todir="${todir}">
  43. <fileset dir="${spring.install.dir}/src"
  44. includes="**/*.java,**/*.aj"/>
  45. <fileset dir="${spring.install.dir}/tiger/src"
  46. includes="**/*.java,**/*.aj"/>
  47. <fileset dir="${test.aspects.src.dir}"
  48. includes="**/*.java,**/*.aj"/>
  49. </copy>
  50. </target>-->
  51. </project>