<!-- To add graphs to the reports, download and install GraphViz from graphviz.org. -->
<!-- 1. create a beandoc.properties and add the following line to it: -->
<!-- compiler.dotExe=C:/Program Files/ATT/GraphViz/bin/dot.exe -->
<!-- 2. Add beandocProps="beandoc.properties" to the <beandoc> task. -->
</target>
Matt Raible added a comment - 15/Dec/05 06:29 PM Added "beandoc" target so you can run "ant beandoc".
<target name="beandoc" depends="init" description="Generate beandoc reports">
<artifact:dependencies pathId="beandoc.classpath">
<dependency groupId="org.springframework" artifactId="beandoc" version="0.7.0"/>
</artifact:dependencies>
<taskdef name="beandoc" classname="org.springframework.beandoc.client.AntTask">
<classpath refid="beandoc.classpath"/>
</taskdef>
<mkdir dir="${build.dir}/beandoc"/>
<beandoc outputDir="${build.dir}/beandoc">
<fileset dir="${web.dir}/WEB-INF">
<include name="*-servlet.xml"/>
<include name="applicationContext*.xml"/>
</fileset>
</beandoc>
<!-- To add graphs to the reports, download and install GraphViz from graphviz.org. -->
<!-- 1. create a beandoc.properties and add the following line to it: -->
<!-- compiler.dotExe=C:/Program Files/ATT/GraphViz/bin/dot.exe -->
<!-- 2. Add beandocProps="beandoc.properties" to the <beandoc> task. -->
</target>
<target name="beandoc" depends="init" description="Generate beandoc reports">
<artifact:dependencies pathId="beandoc.classpath">
<dependency groupId="org.springframework" artifactId="beandoc" version="0.7.0"/>
</artifact:dependencies>
<taskdef name="beandoc" classname="org.springframework.beandoc.client.AntTask">
<classpath refid="beandoc.classpath"/>
</taskdef>
<mkdir dir="${build.dir}/beandoc"/>
<beandoc outputDir="${build.dir}/beandoc">
<fileset dir="${web.dir}/WEB-INF">
<include name="*-servlet.xml"/>
<include name="applicationContext*.xml"/>
</fileset>
</beandoc>
<!-- To add graphs to the reports, download and install GraphViz from graphviz.org. -->
<!-- 1. create a beandoc.properties and add the following line to it: -->
<!-- compiler.dotExe=C:/Program Files/ATT/GraphViz/bin/dot.exe -->
<!-- 2. Add beandocProps="beandoc.properties" to the <beandoc> task. -->
</target>