You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2012/03/14 02:59:58 UTC

svn commit: r1300439 - /lucene/dev/trunk/modules/spatial/build.xml

Author: sarowe
Date: Wed Mar 14 01:59:57 2012
New Revision: 1300439

URL: http://svn.apache.org/viewvc?rev=1300439&view=rev
Log:
LUCENE-3795: simplify build file

Modified:
    lucene/dev/trunk/modules/spatial/build.xml

Modified: lucene/dev/trunk/modules/spatial/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/modules/spatial/build.xml?rev=1300439&r1=1300438&r2=1300439&view=diff
==============================================================================
--- lucene/dev/trunk/modules/spatial/build.xml (original)
+++ lucene/dev/trunk/modules/spatial/build.xml Wed Mar 14 01:59:57 2012
@@ -21,20 +21,13 @@
 
   <path id="classpath">
     <path refid="base.classpath"/>
-    <pathelement path="${spatial-base.jar}" />
     <pathelement path="${queries.jar}" />
   </path>
 
   <path id="test.classpath">
     <path refid="test.base.classpath" />
-    <path refid="base.classpath"/>
     <pathelement path="src/test-files" />
   </path>
 
-
-  <target name="init" depends="contrib-build.init"/>
-  <target name="dist-maven" depends="jar-core,javadocs,common.dist-maven"/>
-  <target name="compile" depends="jar-queries,common.compile-core" />
-  <target name="test" depends="compile-test,validate,junit-mkdir,junit-sequential,junit-parallel" description="Runs unit tests"/>
-
+  <target name="compile-core" depends="jar-queries,common.compile-core" />
 </project>