mirror of
https://github.com/apache/lucene.git
synced 2025-03-06 00:09:28 +00:00
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@807772 13f79535-47bb-0310-9956-ffa450edef68
105 lines
3.5 KiB
XML
105 lines
3.5 KiB
XML
<?xml version="1.0"?>
|
|
<project name="bdb" default="default">
|
|
|
|
<description>
|
|
Lucene Berkeley DB integration
|
|
</description>
|
|
|
|
<property name="db.version" value="4.7.25" />
|
|
|
|
<path id="db.jar">
|
|
<pathelement location="lib/db-${db.version}.jar" />
|
|
</path>
|
|
|
|
<available classname="com.sleepycat.db.internal.Db" property="db.jar.exists">
|
|
<classpath refid="db.jar" />
|
|
</available>
|
|
|
|
<pathconvert property="project.classpath" targetos="unix" refid="db.jar" />
|
|
|
|
<property name="build.dir" location="../../../build/contrib/db/bdb" />
|
|
<property name="dist.dir" location="../../../dist/contrib/db/bdb" />
|
|
<property name="maven.dist.dir" location="../../../dist/maven" />
|
|
|
|
<import file="../../contrib-build.xml" />
|
|
|
|
<path id="test.classpath">
|
|
<path refid="classpath"/>
|
|
<pathelement location="../../../build/classes/test/"/>
|
|
<path refid="junit-path"/>
|
|
<pathelement location="${build.dir}/classes/java"/>
|
|
</path>
|
|
|
|
<target name="get-db-jar" unless="db.jar.exists">
|
|
<mkdir dir="lib" />
|
|
<get src="http://downloads.osafoundation.org/db/db-${db.version}.jar"
|
|
dest="lib/db-${db.version}.jar" ignoreerrors="true"/>
|
|
</target>
|
|
|
|
<target name="compile-core" depends="check-and-get-db-jar, warn-no-lib" if="execute-build">
|
|
<antcall target="common.compile-core"/>
|
|
</target>
|
|
|
|
<target name="jar-core" depends="check-and-get-db-jar, warn-no-lib" if="execute-build">
|
|
<antcall target="common.jar-core"/>
|
|
</target>
|
|
|
|
<target name="compile-test" depends="check-and-get-db-jar, warn-no-lib" if="execute-build">
|
|
<antcall target="contrib-build.compile-test"/>
|
|
</target>
|
|
|
|
<target name="sanity-load-lib" depends="compile-test" >
|
|
<java classname="org.apache.lucene.store.db.SanityLoadLibrary"
|
|
classpathref="junit.classpath"
|
|
fork="true"
|
|
failonerror="false"
|
|
logError="false"
|
|
outputproperty="sanity-load-lib-error"
|
|
/>
|
|
<condition property="sanity-check-failed" value="true">
|
|
<and>
|
|
<isset property="sanity-load-lib-error"/>
|
|
<not>
|
|
<equals arg1="${sanity-load-lib-error}" arg2="" trim="true" />
|
|
</not>
|
|
</and>
|
|
</condition>
|
|
</target>
|
|
|
|
<target name="warn-sanity-failed" if="sanity-check-failed">
|
|
<echo>Unit Tests Skipped: Could not sanity check Native Library</echo>
|
|
</target>
|
|
|
|
<target name="warn-no-lib" unless="execute-build">
|
|
<echo>Build Skipped: Could not download db-${db.version}.jar</echo>
|
|
</target>
|
|
|
|
<target name="test" depends="sanity-load-lib, warn-sanity-failed"
|
|
unless="sanity-check-failed">
|
|
<antcall target="common.test" inheritAll="true" inheritRefs="true" />
|
|
</target>
|
|
|
|
|
|
<!-- Note: this has been introduced as the download from downloads.osafoundation.org
|
|
fails frequently as the host is not available. To prevent nightly build failure
|
|
this check prevents the bdb module from being build or test to be run if the
|
|
"nightly" property is set and the jar can not be downloaded.
|
|
-->
|
|
<target name="check-and-get-db-jar" depends="get-db-jar" >
|
|
<condition property="execute-build">
|
|
<or>
|
|
<available classname="com.sleepycat.db.internal.Db">
|
|
<classpath refid="db.jar" />
|
|
</available>
|
|
<isset property="db.jar.exists"/>
|
|
<!-- always succeed if the nightly property is not set -->
|
|
<not>
|
|
<isset property="nightly"/>
|
|
</not>
|
|
</or>
|
|
</condition>
|
|
</target>
|
|
|
|
<target name="init" depends="contrib-build.init, check-and-get-db-jar" />
|
|
</project>
|