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 09:52:54 UTC

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

Author: ryan
Date: Tue Feb 21 08:52:53 2012
New Revision: 1291663

URL: http://svn.apache.org/viewvc?rev=1291663&view=rev
Log:
SOLRLUCENE-3795: fix build.xml

Modified:
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/build.xml
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/strategy/build.xml

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=1291663&r1=1291662&r2=1291663&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 08:52:53 2012
@@ -41,20 +41,20 @@
     <ant dir="strategy" target="clean" />
   </target>
   <target name="validate">
-    <ant dir="base" target="clean" />
-    <ant dir="strategy" target="clean" />
+    <ant dir="base" target="validate" />
+    <ant dir="strategy" target="validate" />
   </target>
   <target name="compile-core">
-    <ant dir="base" target="clean" />
-    <ant dir="strategy" target="clean" />
+    <ant dir="base" target="compile-core" />
+    <ant dir="strategy" target="compile-core" />
   </target>
   <target name="compile-test">
-    <ant dir="base" target="clean" />
-    <ant dir="strategy" target="clean" />
+    <ant dir="base" target="compile-test" />
+    <ant dir="strategy" target="compile-test" />
   </target>
   <target name="test">
-    <ant dir="base" target="clean" />
-    <ant dir="strategy" target="clean" />
+    <ant dir="base" target="test" />
+    <ant dir="strategy" target="test" />
   </target>
 
   <target name="build-artifacts-and-tests" depends="default,compile-test" />

Modified: lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/strategy/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/strategy/build.xml?rev=1291663&r1=1291662&r2=1291663&view=diff
==============================================================================
--- lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/strategy/build.xml (original)
+++ lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/strategy/build.xml Tue Feb 21 08:52:53 2012
@@ -43,6 +43,7 @@
 
   <path id="test.classpath">
     <path refid="test.base.classpath" />
+    <path refid="base.classpath"/>
     <pathelement path="${analyzers-common.jar}" />
     <pathelement path="src/test-files" />
   </path>