git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113282 13f79535-47bb-0310-9956-ffa450edef68
29 lines
760 B
XML
29 lines
760 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>
|
|
|
|
<goal name="clean:classes"
|
|
description="Remove all build and test classes">
|
|
<ant:delete dir="maven.build.dest"/>
|
|
<ant:delete dir="maven.test.dest"/>
|
|
</goal>
|
|
|
|
<goal name="clean:docs"
|
|
description="Remove all docs and generated xdocs">
|
|
<ant:delete dir="maven.gen.docs"/>
|
|
<ant:delete dir="maven.docs.dest"/>
|
|
</goal>
|
|
|
|
</project>
|