blob: 397472d3e0092757911f568a902d8be91c20bebf [file] [log] [blame]
<?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-morphlines-cell" default="default">
<description>
Solr Cell Morphline commands.
</description>
<import file="../contrib-build.xml"/>
<solr-contrib-uptodate name="extraction"
property="solr-extraction.uptodate"
classpath.property="solr-cell.jar"/>
<target name="compile-solr-extraction" unless="solr-extraction.uptodate">
<ant dir="${common-solr.dir}/contrib/extraction" target="compile-core" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<solr-contrib-uptodate name="morphlines-core"
property="solr-morphlines-core.uptodate"/>
<target name="compile-morphlines-core" unless="solr-morphlines-core.uptodate">
<ant dir="${common-solr.dir}/contrib/morphlines-core" target="compile-core" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
<ant dir="${common-solr.dir}/contrib/morphlines-core" target="compile-test" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<solr-contrib-uptodate name="map-reduce"
property="solr-map-reduce.uptodate"
classpath.property="MapReduceIndexerTool.jar"/>
<target name="compile-map-reduce" unless="solr-map-reduce.uptodate">
<ant dir="${common-solr.dir}/contrib/map-reduce" target="compile-core" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<target name="resolve-extraction-libs">
<ant dir="${common-solr.dir}/contrib/extraction" target="resolve" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<target name="resolve-morphlines-core-libs">
<ant dir="${common-solr.dir}/contrib/morphlines-core" target="resolve" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<target name="resolve-map-reduce-libs">
<ant dir="${common-solr.dir}/contrib/map-reduce" target="resolve" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<path id="classpath.additions">
<pathelement location="${common-solr.dir}/build/contrib/solr-cell/classes/java"/>
<fileset dir="${common-solr.dir}/contrib/extraction/lib" excludes="${common.classpath.excludes}"/>
<pathelement location="${common-solr.dir}/build/contrib/solr-morphlines-core/classes/java"/>
<fileset dir="${common-solr.dir}/contrib/morphlines-core/lib" excludes="${common.classpath.excludes}"/>
<!-- <pathelement location="${common-solr.dir}/build/contrib/solr-map-reduce/classes/java"/> -->
<!-- <fileset dir="${common-solr.dir}/contrib/map-reduce/lib" excludes="${common.classpath.excludes}"/> -->
</path>
<path id="classpath">
<path refid="solr.base.classpath"/>
<path refid="classpath.additions"/>
</path>
<path id="test.classpath">
<path refid="solr.test.base.classpath"/>
<path refid="classpath.additions"/>
<pathelement location="${common-solr.dir}/build/contrib/solr-morphlines-core/classes/test"/>
<pathelement location="${common-solr.dir}/contrib/morphlines-core/src/test-files"/>
<fileset dir="${common-solr.dir}/contrib/morphlines-core/test-lib" excludes="${common.classpath.excludes}"/>
</path>
<path id="javadoc.classpath">
<path refid="junit-path"/>
<path refid="classpath"/>
<pathelement location="${ant.home}/lib/ant.jar"/>
<fileset dir=".">
<exclude name="build/**/*.jar"/>
<include name="**/lib/*.jar"/>
</fileset>
</path>
<!-- TODO: make this nicer like lucene? -->
<target name="javadocs" depends="compile-core,define-lucene-javadoc-url,lucene-javadocs,javadocs-solr-core,javadocs-extraction,javadocs-morphlines-core,check-javadocs-uptodate" unless="javadocs-uptodate-${name}">
<sequential>
<mkdir dir="${javadoc.dir}/${name}"/>
<solr-invoke-javadoc>
<solrsources>
<packageset dir="${src.dir}"/>
</solrsources>
<links>
<link href="../solr-solrj"/>
<link href="../solr-core"/>
<link href="../solr-cell"/>
<link href="../solr-morphlines-core"/>
</links>
</solr-invoke-javadoc>
<solr-jarify basedir="${javadoc.dir}/${name}" destfile="${build.dir}/${final.name}-javadoc.jar"/>
</sequential>
</target>
<target name="javadocs-extraction">
<ant dir="${common-solr.dir}/contrib/extraction" target="javadocs" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<target name="javadocs-morphlines-core">
<ant dir="${common-solr.dir}/contrib/morphlines-core" target="javadocs" inheritAll="false">
<propertyset refid="uptodate.and.compiled.properties"/>
</ant>
</target>
<target name="compile-core" depends="resolve-extraction-libs, resolve-morphlines-core-libs, resolve-map-reduce-libs, compile-solr-extraction, compile-morphlines-core, solr-contrib-build.compile-core"/>
<target name="dist" depends="common-solr.dist"/>
</project>