2008-12-06 08:04:26 -05:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
2008-12-07 15:21:03 -05:00
|
|
|
<project name="solr-cell" default="build">
|
2008-12-06 08:04:26 -05:00
|
|
|
|
|
|
|
<property name="solr-path" value="../.." />
|
|
|
|
<property name="tika.version" value="0.2-SNAPSHOT"/>
|
|
|
|
<property name="tika.lib" value="lib/tika-${tika.version}-standalone.jar"/>
|
|
|
|
|
|
|
|
<import file="../../common-build.xml"/>
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Solr Integration with Tika for extracting content from binary file formats such as Microsoft Word and Adobe PDF.
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<path id="common.classpath">
|
2008-12-07 14:07:11 -05:00
|
|
|
<pathelement location="${solr-path}/build/solr" />
|
|
|
|
<pathelement location="${solr-path}/build/solrj" />
|
2008-12-06 08:04:26 -05:00
|
|
|
<fileset dir="lib" includes="*.jar"/>
|
2008-12-07 15:21:03 -05:00
|
|
|
<fileset dir="${solr-path}/lib" includes="*.jar"/>
|
2008-12-06 08:04:26 -05:00
|
|
|
</path>
|
|
|
|
|
|
|
|
<path id="test.classpath">
|
|
|
|
<path refid="common.classpath" />
|
|
|
|
<pathelement path="${dest}/classes" />
|
|
|
|
<pathelement path="${dest}/test-classes" />
|
|
|
|
<pathelement path="${java.class.path}"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<target name="clean">
|
|
|
|
<delete failonerror="false" dir="${dest}"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="init">
|
|
|
|
<mkdir dir="${dest}/classes"/>
|
|
|
|
<mkdir dir="${build.javadoc}" />
|
|
|
|
<ant dir="../../" inheritall="false" target="compile" />
|
|
|
|
<ant dir="../../" inheritall="false" target="make-manifest" />
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile" depends="init">
|
|
|
|
<solr-javac destdir="${dest}/classes"
|
|
|
|
classpathref="common.classpath">
|
|
|
|
<src path="src/main/java" />
|
|
|
|
</solr-javac>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="build" depends="compile">
|
|
|
|
<solr-jar destfile="${dest}/${fullnamever}.jar" basedir="${dest}/classes"
|
|
|
|
manifest="${common.dir}/${dest}/META-INF/MANIFEST.MF">
|
|
|
|
<!--<zipfileset src="${tika.lib}"/>-->
|
|
|
|
</solr-jar>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compileTests" depends="compile">
|
|
|
|
<solr-javac destdir="${dest}/test-classes"
|
|
|
|
classpathref="test.classpath">
|
|
|
|
<src path="src/test/java" />
|
|
|
|
</solr-javac>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="test" depends="compileTests">
|
|
|
|
<mkdir dir="${junit.output.dir}"/>
|
|
|
|
|
|
|
|
<junit printsummary="on"
|
|
|
|
haltonfailure="no"
|
|
|
|
errorProperty="tests.failed"
|
|
|
|
failureProperty="tests.failed"
|
|
|
|
dir="src/test/resources/"
|
|
|
|
>
|
|
|
|
<formatter type="brief" usefile="false" if="junit.details"/>
|
|
|
|
<classpath refid="test.classpath"/>
|
|
|
|
<formatter type="xml"/>
|
|
|
|
<batchtest fork="yes" todir="${junit.output.dir}" unless="testcase">
|
|
|
|
<fileset dir="src/test/java" includes="${junit.includes}"/>
|
|
|
|
</batchtest>
|
|
|
|
<batchtest fork="yes" todir="${junit.output.dir}" if="testcase">
|
|
|
|
<fileset dir="src/test/java" includes="**/${testcase}.java"/>
|
|
|
|
</batchtest>
|
|
|
|
</junit>
|
|
|
|
|
|
|
|
<fail if="tests.failed">Tests failed!</fail>
|
|
|
|
</target>
|
|
|
|
|
2008-12-07 15:21:03 -05:00
|
|
|
<target name="test-reports"
|
|
|
|
description="Generates HTML test reports.">
|
|
|
|
<mkdir dir="${junit.reports}"/>
|
|
|
|
<junitreport todir="${junit.output.dir}">
|
|
|
|
<fileset dir="${junit.output.dir}">
|
|
|
|
<include name="TEST-*.xml"/>
|
|
|
|
</fileset>
|
|
|
|
<report format="frames" todir="${junit.reports}"/>
|
|
|
|
</junitreport>
|
|
|
|
</target>
|
|
|
|
|
2008-12-06 08:04:26 -05:00
|
|
|
<target name="dist" depends="build">
|
2008-12-12 10:18:24 -05:00
|
|
|
<copy file="build/${fullnamever}.jar" todir="${solr-path}/dist"/>
|
2008-12-06 08:04:26 -05:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="example" depends="build">
|
2009-10-12 10:41:51 -04:00
|
|
|
<!-- :NOOP: this use to copy libs but now we can refer to them by path -->
|
2008-12-06 08:04:26 -05:00
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="javadoc">
|
|
|
|
<sequential>
|
|
|
|
<mkdir dir="${build.javadoc}/contrib-${name}"/>
|
|
|
|
|
|
|
|
<path id="javadoc.classpath">
|
|
|
|
<path refid="common.classpath"/>
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<invoke-javadoc
|
|
|
|
destdir="${build.javadoc}/contrib-${name}"
|
|
|
|
title="${Name} ${version} contrib-${fullnamever} API">
|
|
|
|
<sources>
|
|
|
|
<packageset dir="src/main/java"/>
|
|
|
|
</sources>
|
|
|
|
</invoke-javadoc>
|
|
|
|
</sequential>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
|
2009-10-12 10:41:51 -04:00
|
|
|
</project>
|