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.

docs.xml 894 B

12345678910111213141516171819202122232425262728
  1. <project name="docs" default="main">
  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. <target name="main">
  9. <taskdef name="anakia"
  10. classname="org.apache.velocity.anakia.AnakiaTask">
  11. <classpath>
  12. <fileset dir="${jakarta-site.dir}/lib">
  13. <include name="*.jar"/>
  14. </fileset>
  15. </classpath>
  16. </taskdef>
  17. <anakia basedir="src/xdocs"
  18. destdir="docs"
  19. style="docs.vsl"
  20. projectfile="stylesheets/project.xml"
  21. includes="**/*.xml"
  22. excludes="stylesheets/**"
  23. velocitypropertiesfile="src/xdocs/velocity.properties"
  24. />
  25. </target>
  26. </project>