[SOLR-3013] - removed unneded custom ant configuration for solr-uima

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1295508 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tommaso Teofili 2012-03-01 10:58:57 +00:00
parent a42dbcc647
commit 41ddc259d7
1 changed files with 2 additions and 15 deletions

View File

@ -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>