maven-plugins/clean/plugin.jelly
dion 6bf7d0446f Remove goals that were cross plugin.
If someone wants clean:classes or clean:docs, then they should
be implemented in the plugins that create the directories: java, test and xdoc


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113549 13f79535-47bb-0310-9956-ffa450edef68
2003-06-29 15:43:15 +00:00

17 lines
403 B
XML

<?xml version="1.0"?>
<project
xmlns:j="jelly:core"
xmlns:ant="jelly:ant">
<goal name="clean" description="Remove all project artifacts"
prereqs="clean:clean"/>
<goal name="clean:clean"
description="Remove all project artifacts">
<ant:delete dir="${maven.build.dir}"/>
<ant:delete file="${basedir}/velocity.log" quiet="true" failonerror="false"/>
</goal>
</project>