<?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-analysis-extras" default="default" xmlns:ivy="antlib:org.apache.ivy.ant">

  <description>
    Additional analysis components
  </description>

  <import file="../contrib-build.xml"/>
  
  <path id="analysis.extras.lucene.libs">
    <pathelement location="${analyzers-icu.jar}"/>
    <!-- 
      Although the smartcn, stempel, and morfologik jars are not dependencies of
      code in the analysis-extras contrib, they must remain here in order to
      populate the Solr distribution
     -->
    <pathelement location="${analyzers-smartcn.jar}"/>
    <pathelement location="${analyzers-stempel.jar}"/>
    <pathelement location="${analyzers-morfologik.jar}"/>
  </path>

  <path id="classpath">
    <fileset dir="lib" excludes="${common.classpath.excludes}"/>
    <path refid="analysis.extras.lucene.libs" />
    <path refid="solr.base.classpath"/>
  </path>

  <path id="test.classpath">
    <path refid="solr.test.base.classpath"/>
    <fileset dir="${test.lib.dir}" includes="*.jar"/>
  </path>

  <!-- 
    Although the smartcn, stempel, and morfologik jars are not dependencies of
    code in the analysis-extras contrib, they must remain here in order to
    populate the Solr distribution
   -->
  <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 inheritall="true">
      <target name="jar-analyzers-icu"/>
      <target name="jar-analyzers-smartcn"/>
      <target name="jar-analyzers-stempel"/>
      <target name="jar-analyzers-morfologik"/>
    </antcall>
    <property name="analyzers-icu.uptodate" value="true"/> <!-- compile-time dependency -->
    <mkdir dir="${build.dir}/lucene-libs"/>
    <copy todir="${build.dir}/lucene-libs" preservelastmodified="true" flatten="true" failonerror="true" overwrite="true">
      <path refid="analysis.extras.lucene.libs" />
    </copy>
  </target>
  <target name="-module-jars-to-solr-package" if="called.from.create-package">
    <antcall target="-unpack-lucene-tgz" inheritall="true"/>
    <pathconvert property="relative.analysis.extras.lucene.libs" pathsep=",">
      <path refid="analysis.extras.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.analysis.extras.lucene.libs}"/>
    </copy>
  </target>

  <target name="compile-core" depends="jar-analyzers-icu, solr-contrib-build.compile-core"/>
  <target name="dist" depends="module-jars-to-solr, common-solr.dist"/>
</project>