Catalog Task
Description
The catalog task generates HTML documentation about the component types defined a supplied scope.
Example
Example build file that uses the catalog task:
<project name="dpml-http" default="install" basedir="."
xmlns:transit="antlib:dpml.tools.transit"
xmlns:x="dpml:depot"
xmlns:c="dpml:metro">
<transit:import uri="local:template:dpml/depot/standard"/>
<target name="build" depends="standard.build">
<x:plugin uri="link:plugin:dpml/metro/dpml-metro-tools"/>
<c:catalog>
<fileset dir="${basedir}">
<include name="**/target/classes/main/**/*.type"/>
</fileset>
</c:catalog>
</target>
</project>