mirror of https://github.com/apache/lucene.git
add ignores
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@164698 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
34efd6335a
commit
26aab23901
|
@ -6,13 +6,31 @@
|
|||
</description>
|
||||
|
||||
<path id="additional.dependencies">
|
||||
<pathelement location="lib/db.jar"/>
|
||||
<fileset dir="lib"/>
|
||||
</path>
|
||||
|
||||
<available classname="com.sleepycat.db.internal.Db" property="db.jar.exists">
|
||||
<classpath refid="additional.dependencies"/>
|
||||
</available>
|
||||
|
||||
<pathconvert property="project.classpath"
|
||||
targetos="unix"
|
||||
refid="additional.dependencies"
|
||||
/>
|
||||
|
||||
<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"
|
||||
/>
|
||||
</target>
|
||||
|
||||
<target name="check-and-get-db-jar" depends="get-db-jar">
|
||||
</target>
|
||||
|
||||
<target name="init" depends="common.init,check-and-get-db-jar">
|
||||
|
||||
</target>
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue