You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ry...@apache.org on 2012/02/21 10:32:53 UTC

svn commit: r1291676 - in /lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial: ./ base/ build.xml strategy/

Author: ryan
Date: Tue Feb 21 09:32:53 2012
New Revision: 1291676

URL: http://svn.apache.org/viewvc?rev=1291676&view=rev
Log:
LUCENE-3795: fix 'clean' task; ignore pom.xml files

Modified:
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/   (props changed)
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/base/   (props changed)
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/build.xml
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/strategy/   (props changed)

Modified: lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/build.xml?rev=1291676&r1=1291675&r2=1291676&view=diff
==============================================================================
--- lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/build.xml (original)
+++ lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/build.xml Tue Feb 21 09:32:53 2012
@@ -24,7 +24,7 @@
       - base:	Spatial API w/o lucene dependencies
       - strategy: Lucene based indexing strategies
   </description>
-
+  
   <target name="base">
     <ant dir="base" />
   </target>
@@ -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" />