You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

depend.xml 936 B

123456789101112131415161718192021222324252627282930313233
  1. <project default="main" basedir=".">
  2. <!--
  3. Give user a chance to override without editing this file
  4. (and without typing -D each time he compiles it)
  5. -->
  6. <property file=".ant.properties"/>
  7. <property file="${user.home}/.ant.properties"/>
  8. <path id="project.class.path">
  9. <pathelement path="${java.class.path}" />
  10. <fileset dir="lib">
  11. <include name="*.jar" />
  12. </fileset>
  13. <pathelement path="build/classes" />
  14. </path>
  15. <!-- Main target -->
  16. <target name="main" depends="style" />
  17. <!-- lets see what is available -->
  18. <target name="jdepend">
  19. <jdepend outputfile="build/jdepend.xml" format="xml" fork="yes">
  20. <classpath refid="project.class.path"/>
  21. <sourcespath>
  22. <pathelement location="src/java" />
  23. </sourcespath>
  24. </jdepend>
  25. <style in="build/jdepend.xml" processor="trax" out="build/jdepend.html" style="../../src/etc/jdepend.xsl"/>
  26. </target>
  27. </project>