Bug: clean goal doesn't delete the amq's basedir generated target and xdocs directory.

Fix: Modified clean goal to delete these directories.

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@378412 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Frederick G. Oconer 2006-02-17 02:19:28 +00:00
parent ba0ada4db7
commit 974f4172bc
1 changed files with 4 additions and 0 deletions

View File

@ -143,6 +143,10 @@
</goal>
<goal name="clean" prereqs="init">
<!-- should remove the base dir target and xdocs as well -->
<ant:delete dir="${basedir}/target"/>
<ant:delete dir="${basedir}/xdocs"/>
<j:set var="goal" value="clean"/>
<attainGoal name="multiproject:goal"/>
</goal>