mirror of https://github.com/apache/lucene.git
64 lines
2.7 KiB
XML
64 lines
2.7 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<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.)
|
|
</description>
|
|
|
|
<import file="../contrib-build.xml"/>
|
|
|
|
<path id="uima.lucene.libs">
|
|
<pathelement path="${analyzers-uima.jar}"/>
|
|
</path>
|
|
|
|
<path id="classpath">
|
|
<path refid="uima.lucene.libs"/>
|
|
<path refid="solr.base.classpath"/>
|
|
</path>
|
|
|
|
<target name="module-jars-to-solr"
|
|
depends="-module-jars-to-solr-not-for-package,-module-jars-to-solr-package"/>
|
|
<target name="-module-jars-to-solr-not-for-package" unless="called.from.create-package">
|
|
<antcall target="jar-analyzers-uima" inheritall="true"/>
|
|
<property name="analyzers-uima.uptodate" value="true"/>
|
|
<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="-module-jars-to-solr-package" if="called.from.create-package">
|
|
<antcall target="-unpack-lucene-tgz" inheritall="true"/>
|
|
<pathconvert property="relative.uima.lucene.libs" pathsep=",">
|
|
<path refid="uima.lucene.libs"/>
|
|
<globmapper from="${common.build.dir}/*" to="*" handledirsep="true"/>
|
|
</pathconvert>
|
|
<mkdir dir="${build.dir}/lucene-libs"/>
|
|
<copy todir="${build.dir}/lucene-libs" preservelastmodified="true" flatten="true" failonerror="true" overwrite="true">
|
|
<fileset dir="${lucene.tgz.unpack.dir}/lucene-${version}" includes="${relative.uima.lucene.libs}"/>
|
|
</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>
|