2006-01-04 20:04:17 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<project name="bdb-je" default="default">
|
|
|
|
|
|
|
|
<description>
|
|
|
|
Lucene Berkeley DB Java Edition integration
|
|
|
|
</description>
|
|
|
|
|
|
|
|
<property name="je.version" value="2.0.90" />
|
|
|
|
|
|
|
|
<path id="je.jar">
|
|
|
|
<pathelement location="lib/je-${je.version}/lib/je.jar" />
|
|
|
|
</path>
|
|
|
|
|
|
|
|
<available classname="com.sleepycat.je.Database" property="je.jar.exists">
|
|
|
|
<classpath refid="je.jar" />
|
|
|
|
</available>
|
|
|
|
|
|
|
|
<pathconvert property="project.classpath" targetos="unix" refid="je.jar" />
|
|
|
|
|
|
|
|
<property name="build.dir" location="../../../build/contrib/db/bdb-je" />
|
|
|
|
<property name="dist.dir" location="../../../dist/contrib/db/bdb-je" />
|
2007-06-16 00:45:13 -04:00
|
|
|
<property name="maven.dist.dir" location="../../../dist/maven" />
|
|
|
|
|
2006-01-04 20:04:17 -05:00
|
|
|
<import file="../../contrib-build.xml" />
|
|
|
|
|
|
|
|
<target name="get-je-jar" unless="je.jar.exists">
|
|
|
|
<mkdir dir="lib" />
|
2008-03-13 05:06:31 -04:00
|
|
|
<get src="http://download.oracle.com/berkeley-db/je-${je.version}.zip"
|
2006-01-04 20:04:17 -05:00
|
|
|
dest="lib/je-${je.version}.zip" />
|
|
|
|
<unzip src="lib/je-${je.version}.zip" dest="lib">
|
|
|
|
<patternset>
|
|
|
|
<include name="je-${je.version}/lib/je.jar" />
|
|
|
|
</patternset>
|
|
|
|
</unzip>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="check-and-get-je-jar" depends="get-je-jar" />
|
2007-06-11 15:29:41 -04:00
|
|
|
<target name="init" depends="contrib-build.init,check-and-get-je-jar" />
|
2006-01-04 20:04:17 -05:00
|
|
|
</project>
|