maven-plugins/tasklist/plugin.jelly
kaz eabbe63ba0 Fixing/cleaning up some of the plugins.
o Removed extraneous <mkdir>s
o Converted to new method of accessing properties


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@112743 13f79535-47bb-0310-9956-ffa450edef68
2003-01-25 17:25:24 +00:00

37 lines
997 B
XML

<?xml version="1.0"?>
<project
xmlns:j="jelly:core"
xmlns:vdoclet="vdoclet">
<!-- ================================================================== -->
<!-- T A S K C R E A T I O N -->
<!-- ================================================================== -->
<goal name="tasklist" prereqs="maven-tasklist-plugin:report"/>
<goal
name="maven-tasklist-plugin:report"
prereqs="xdoc:init"
description="Generate a list of tasks from @todo tags in your code">
<j:set var="genDocs"
value="${pom.getPluginContext('maven-xdoc-plugin').getVariable('maven.gen.docs')}"/>
<j:if test="${sourcesPresent == 'true'}">
<echo>Generating tasklist ...</echo>
<vdoclet:vdoclet
srcDir="${pom.build.sourceDirectory}"
destDir="${genDocs}"
template="plugin-resources/templates/tasklist.vm"
outputFile="task-list.xml"
/>
</j:if>
</goal>
</project>