<?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-core" default="default" xmlns:ivy="antlib:org.apache.ivy.ant"> <description> Solr Morphlines 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> <target name="resolve-extraction-libs"> <ant dir="${common-solr.dir}/contrib/extraction" 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}"/> </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"/> <fileset dir="${test.lib.dir}" includes="*.jar"/> </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,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"/> </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="resolve" depends="ivy-availability-check,ivy-fail,ivy-configure"> <sequential> <ivy:retrieve conf="compile" type="jar,bundle" sync="${ivy.sync}" log="download-only" symlink="${ivy.symlink}"/> <ivy:retrieve conf="test,test.DfsMiniCluster" type="jar,bundle,test" sync="${ivy.sync}" log="download-only" symlink="${ivy.symlink}" pattern="${test.lib.dir}/[artifact]-[revision](-[classifier]).[ext]"/> </sequential> </target> <target name="compile-core" depends="resolve-extraction-libs, compile-solr-extraction, solr-contrib-build.compile-core"/> <target name="dist" depends="common-solr.dist"/> </project>