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

svn commit: r1295508 - /lucene/dev/trunk/solr/contrib/uima/build.xml

Author: tommaso
Date: Thu Mar  1 10:58:57 2012
New Revision: 1295508

URL: http://svn.apache.org/viewvc?rev=1295508&view=rev
Log:
[SOLR-3013] - removed unneded custom ant configuration for solr-uima

Modified:
    lucene/dev/trunk/solr/contrib/uima/build.xml

Modified: lucene/dev/trunk/solr/contrib/uima/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/contrib/uima/build.xml?rev=1295508&r1=1295507&r2=1295508&view=diff
==============================================================================
--- lucene/dev/trunk/solr/contrib/uima/build.xml (original)
+++ lucene/dev/trunk/solr/contrib/uima/build.xml Thu Mar  1 10:58:57 2012
@@ -20,23 +20,10 @@
 <project name="solr-uima" default="default">
 
   <description>
-    Solr Integration with UIMA for extracting metadata from arbitrary (text) fields and enrich document with features extracted from UIMA types (language, sentences, concepts, named entities, etc.)
+    Solr Integration with UIMA for extracting metadata from arbitrary (text) fields and enrich document with features
+    extracted from UIMA types (language, sentences, concepts, named entities, etc.)
   </description>
 
   <import file="../contrib-build.xml"/>
 
-  <path id="classpath">
-    <pathelement path="${analyzers-uima.jar}"/>
-    <path refid="solr.base.classpath"/>
-  </path>
-
-  <target name="module-jars-to-solr" depends="jar-analyzers-uima">
-    <mkdir dir="${build.dir}/lucene-libs"/>
-    <copy todir="${build.dir}/lucene-libs" preservelastmodified="true" flatten="true" failonerror="true" overwrite="true">
-      <fileset file="${analyzers-uima.jar}"/>
-    </copy>
-  </target>
-
-  <target name="compile-core" depends="jar-analyzers-uima, solr-contrib-build.compile-core"/>
-  <target name="dist" depends="module-jars-to-solr, common-solr.dist"/>
 </project>