mirror of
https://github.com/apache/lucene.git
synced 2025-03-04 15:29:28 +00:00
All source and test-sources are located under the ./src/ folder. Created GData Object Model (GOM) folder ./src/gom, Core-Folder ./src/core and ./src/hivemind Sources and Tests now splitted into their "sub" projects. Fixed compile error in GDataIndexWriter as IndexWriter has not commitTimeout setter anymore. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@486622 13f79535-47bb-0310-9956-ffa450edef68
58 lines
2.7 KiB
XML
58 lines
2.7 KiB
XML
<?xml version="1.0"?>
|
|
<!--
|
|
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.
|
|
|
|
-->
|
|
|
|
<project name="get-dependencies">
|
|
<property name="repository.url.maven" value="http://www.ibiblio.org/maven" />
|
|
<import file="dependency.xml" />
|
|
<target name="extBuildPath">
|
|
<echo>Preparing build path for external dependencies</echo>
|
|
|
|
<path id="common.build.path">
|
|
<fileset dir="${gdata.external.lib.dir}">
|
|
<include name="hivemind-1.1.jar" />
|
|
<include name="hivemind-lib-1.1.jar" />
|
|
<include name="hivemind-jmx-1.1.jar" />
|
|
<include name="hessian-3.0.20.jar" />
|
|
</fileset>
|
|
</path>
|
|
<path id="build.path">
|
|
<path refid="common.build.path" />
|
|
</path>
|
|
|
|
<path id="test.build.path">
|
|
<fileset dir="${gdata.external.lib.dir}">
|
|
<include name="easymock-1.2_Java1.5.jar" />
|
|
</fileset>
|
|
<path refid="common.build.path" />
|
|
</path>
|
|
</target>
|
|
|
|
<target name="download" if="do.download" depends="extBuildPath">
|
|
<ibiblio-dependency artifact="hivemind" version="1.1" group="hivemind" reposurl="${repository.url.maven}" />
|
|
<ibiblio-dependency artifact="hivemind-lib" version="1.1" group="hivemind" reposurl="${repository.url.maven}" />
|
|
<ibiblio-dependency artifact="hivemind-jmx" version="1.1" group="hivemind" reposurl="${repository.url.maven}" />
|
|
<ibiblio-dependency artifact="hessian" version="3.0.20" group="hessian" folder="download" reposurl="http://www.caucho.com" />
|
|
<ibiblio-dependency artifact="oro" version="2.0.6" group="oro" reposurl="${repository.url.maven}" />
|
|
<ibiblio-dependency artifact="javassist" version="3.0" group="javassist" reposurl="${repository.url.maven}" />
|
|
<ibiblio-dependency artifact="easymock" version="1.2_Java1.5" group="easymock" folder="easymock/1.2_Java1.5" />
|
|
<ibiblio-dependency artifact="stax" version="1.1.2-dev" group="stax" folder="jars" reposurl="http://dist.codehaus.org" />
|
|
<ibiblio-dependency artifact="stax-api" version="1.0.1" group="stax" folder="jars" reposurl="http://dist.codehaus.org" />
|
|
</target>
|
|
|
|
</project> |