mirror of https://github.com/apache/lucene.git
69 lines
2.1 KiB
XML
69 lines
2.1 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" />
|
|
</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="no-bdb-lib" 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-no-lib" if="no-bdb-lib">
|
|
<echo>Unit Tests Skipped: Could not sanity check Native Library</echo>
|
|
</target>
|
|
<target name="test" depends="sanity-load-lib,warn-no-lib"
|
|
unless="no-bdb-lib">
|
|
<antcall target="common.test" inheritAll="true" inheritRefs="true" />
|
|
</target>
|
|
|
|
<target name="check-and-get-db-jar" depends="get-db-jar" />
|
|
<target name="init" depends="contrib-build.init,check-and-get-db-jar" />
|
|
|
|
</project>
|