You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ds...@apache.org on 2012/02/22 07:27:11 UTC

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

Author: dsmiley
Date: Wed Feb 22 06:27:11 2012
New Revision: 1292136

URL: http://svn.apache.org/viewvc?rev=1292136&view=rev
Log:
build.xml tweaks

Modified:
    lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/base/build.xml
    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/base/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/base/build.xml?rev=1292136&r1=1292135&r2=1292136&view=diff
==============================================================================
--- lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/base/build.xml (original)
+++ lucene/dev/branches/lucene3795_lsp_spatial_module/modules/spatial/base/build.xml Wed Feb 22 06:27:11 2012
@@ -32,7 +32,6 @@
   <import file="../../../lucene/contrib/contrib-build.xml"/>
 
   <path id="classpath">
-    <pathelement path="${spatial-base.jar}"/>
     <path refid="base.classpath"/>
   </path>
 

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=1292136&r1=1292135&r2=1292136&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 Wed Feb 22 06:27:11 2012
@@ -37,12 +37,8 @@
   <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">

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=1292136&r1=1292135&r2=1292136&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 Wed Feb 22 06:27:11 2012
@@ -17,7 +17,7 @@
 
 <project name="spatial-strategy" default="default">
   <description>
-    Lucene [Geo]Spatial Strageties
+    Lucene [Geo]Spatial Strategies
   </description>
 
   <property name="build.dir" location="../build/strategy" />
@@ -29,7 +29,7 @@
     <!--
     <fileset dir="lib" includes="*.jar"/>
     -->
-    <fileset dir="../build/base" includes="*.jar"/>
+    <pathelement path="../base/build/classes/java" />
     <fileset dir="../base/lib" includes="*.jar"/>
   </path>
   <pathconvert property="project.classpath" targetos="unix" refid="additional.dependencies" />