[SOLR-3013] - fix the build of solr-uima

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

View File

@ -25,5 +25,20 @@
</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>