2011-04-01 02:58:12 -04:00
|
|
|
<?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="solr-contrib-build">
|
|
|
|
<!-- TODO: adjust build.dir/dist.dir appropriately when a contrib project is run individually -->
|
|
|
|
<property name="build.dir" location="../../build/contrib/${ant.project.name}"/>
|
2011-05-22 17:45:19 -04:00
|
|
|
<property name="dist.dir" location="../../dist"/>
|
2011-04-01 02:58:12 -04:00
|
|
|
|
|
|
|
<import file="../common-build.xml"/>
|
|
|
|
|
|
|
|
<target name="build-solr" unless="solr.core.compiled">
|
|
|
|
<ant dir="${common-solr.dir}" target="compile-test" inheritAll="false"/>
|
|
|
|
<!-- set the property for this ant execution to speed up later tasks depending on this -->
|
|
|
|
<property name="solr.core.compiled" value="true"/>
|
|
|
|
</target>
|
|
|
|
|
|
|
|
<target name="compile-core" depends="build-solr, common.compile-core"/>
|
2011-06-01 18:37:09 -04:00
|
|
|
|
|
|
|
<!-- redefine common-solr.test, and exclude 'validate-solr' dependency, since it should only run at solr/ level -->
|
|
|
|
<target name="test" depends="compile-test,junit-mkdir,junit-sequential,junit-parallel" description="Runs unit tests"/>
|
2011-04-01 02:58:12 -04:00
|
|
|
|
|
|
|
</project>
|