mirror of https://github.com/apache/lucene.git
- 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:
parent
656e81b0d3
commit
77130721ce
|
@ -5,25 +5,25 @@
|
||||||
Lucene DB integration
|
Lucene DB integration
|
||||||
</description>
|
</description>
|
||||||
|
|
||||||
<path id="additional.dependencies">
|
<path id="db-4.3.27">
|
||||||
<fileset dir="lib"/>
|
<pathelement location="lib/db-4.3.27.jar"/>
|
||||||
</path>
|
</path>
|
||||||
|
|
||||||
<available classname="com.sleepycat.db.internal.Db" property="db.jar.exists">
|
<available classname="com.sleepycat.db.internal.Db" property="db.jar.exists">
|
||||||
<classpath refid="additional.dependencies"/>
|
<classpath refid="db-4.3.27"/>
|
||||||
</available>
|
</available>
|
||||||
|
|
||||||
<pathconvert property="project.classpath"
|
<pathconvert property="project.classpath"
|
||||||
targetos="unix"
|
targetos="unix"
|
||||||
refid="additional.dependencies"
|
refid="db-4.3.27"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<import file="../common.xml"/>
|
<import file="../common.xml"/>
|
||||||
|
|
||||||
<target name="get-db-jar" unless="db.jar.exists">
|
<target name="get-db-jar" unless="db.jar.exists">
|
||||||
<mkdir dir="lib"/>
|
<mkdir dir="lib"/>
|
||||||
<get src="http://www.ibiblio.org/maven/berkeleydb/jars/berkeleydb-native-4.2.jar"
|
<get src="http://downloads.osafoundation.org/db/db-4.3.27.jar"
|
||||||
dest="lib/db.jar"
|
dest="lib/db-4.3.27.jar"
|
||||||
/>
|
/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue