maven-plugins/clean/plugin.jelly
2003-07-28 05:15:00 +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>