2004-01-13 19:29:45 -05:00
|
|
|
<?xml version="1.0"?>
|
2007-06-09 02:09:46 -04:00
|
|
|
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2005-05-02 16:06:00 -04:00
|
|
|
<project name="db" default="default">
|
2004-01-13 19:29:45 -05:00
|
|
|
|
|
|
|
<description>
|
|
|
|
Lucene DB integration
|
2006-01-04 20:04:17 -05:00
|
|
|
- bdb: using the Java interface of C Berkeley DB
|
|
|
|
- bdb-je: using Berkeley DB Java Edition
|
2004-01-13 19:29:45 -05:00
|
|
|
</description>
|
|
|
|
|
2006-01-04 20:04:17 -05:00
|
|
|
<target name="bdb">
|
|
|
|
<ant dir="bdb" />
|
|
|
|
</target>
|
2005-04-25 20:30:08 -04:00
|
|
|
|
2006-01-04 20:04:17 -05:00
|
|
|
<target name="bdb-je">
|
|
|
|
<ant dir="bdb-je" />
|
|
|
|
</target>
|
2004-01-13 19:29:45 -05:00
|
|
|
|
2006-01-04 20:04:17 -05:00
|
|
|
<target name="default" depends="bdb,bdb-je" />
|
2005-04-25 20:30:08 -04:00
|
|
|
|
2006-01-04 20:04:17 -05:00
|
|
|
<target name="clean">
|
|
|
|
<ant dir="bdb" target="clean" />
|
|
|
|
<ant dir="bdb-je" target="clean" />
|
2005-04-25 20:30:08 -04:00
|
|
|
</target>
|
2007-06-11 15:29:41 -04:00
|
|
|
<target name="compile-core">
|
|
|
|
<ant dir="bdb" target="compile-core" />
|
|
|
|
<ant dir="bdb-je" target="compile-core" />
|
|
|
|
</target>
|
|
|
|
<target name="compile-test">
|
|
|
|
<ant dir="bdb" target="compile-test" />
|
|
|
|
<ant dir="bdb-je" target="compile-test" />
|
|
|
|
</target>
|
2006-01-04 20:04:17 -05:00
|
|
|
<target name="test">
|
|
|
|
<ant dir="bdb" target="test" />
|
|
|
|
<ant dir="bdb-je" target="test" />
|
2005-04-25 20:30:08 -04:00
|
|
|
</target>
|
|
|
|
|
2007-06-11 15:29:41 -04:00
|
|
|
<target name="build-artifacts-and-tests" depends="default,compile-test" />
|
|
|
|
|
2007-06-16 00:45:13 -04:00
|
|
|
<target name="dist-maven" depends="default">
|
|
|
|
<ant dir="bdb" target="dist-maven" />
|
|
|
|
<ant dir="bdb-je" target="dist-maven" />
|
|
|
|
</target>
|
2007-11-14 14:16:19 -05:00
|
|
|
|
|
|
|
<target name="javadocs">
|
|
|
|
<ant dir="bdb" target="javadocs" />
|
|
|
|
<ant dir="bdb-je" target="javadocs" />
|
|
|
|
</target>
|
|
|
|
|
2009-02-05 16:53:40 -05:00
|
|
|
|
2007-06-16 00:45:13 -04:00
|
|
|
|
2004-01-13 19:29:45 -05:00
|
|
|
</project>
|