- replaced db.jar with db-4.3.27.jar

- downloading db-4.3.27.jar from http://downloads.osafoundation.org/db


git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@165319 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Vajda 2005-04-29 17:33:27 +00:00
parent 656e81b0d3
commit 77130721ce
1 changed files with 6 additions and 6 deletions

View File

@ -5,25 +5,25 @@
Lucene DB integration
</description>
<path id="additional.dependencies">
<fileset dir="lib"/>
<path id="db-4.3.27">
<pathelement location="lib/db-4.3.27.jar"/>
</path>
<available classname="com.sleepycat.db.internal.Db" property="db.jar.exists">
<classpath refid="additional.dependencies"/>
<classpath refid="db-4.3.27"/>
</available>
<pathconvert property="project.classpath"
targetos="unix"
refid="additional.dependencies"
refid="db-4.3.27"
/>
<import file="../common.xml"/>
<target name="get-db-jar" unless="db.jar.exists">
<mkdir dir="lib"/>
<get src="http://www.ibiblio.org/maven/berkeleydb/jars/berkeleydb-native-4.2.jar"
dest="lib/db.jar"
<get src="http://downloads.osafoundation.org/db/db-4.3.27.jar"
dest="lib/db-4.3.27.jar"
/>
</target>