LUCENE-3795: fix 'clean' task; ignore pom.xml files

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3795_lsp_spatial_module@1291676 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2012-02-21 09:32:53 +00:00
parent 4fab984441
commit d06e17faa6
1 changed files with 6 additions and 1 deletions

View File

@ -37,9 +37,14 @@
<target name="compile" depends="base,strategy" />
<target name="clean">
<!-- Not sure why this does not work
<ant dir="base" target="clean" />
<ant dir="strategy" target="clean" />
-->
<delete dir="build"/>
<delete dir="dist"/>
</target>
<target name="validate">
<ant dir="base" target="validate" />
<ant dir="strategy" target="validate" />