2010-03-17 17:31:44 -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.
|
|
|
|
-->
|
|
|
|
|
2010-03-17 17:54:11 -04:00
|
|
|
<project name="lucene-solr" default="test" basedir=".">
|
2011-04-15 20:50:56 -04:00
|
|
|
<target name="test" description="Test both Lucene and Solr" depends="validate">
|
2010-03-17 17:31:44 -04:00
|
|
|
<sequential>
|
|
|
|
<subant target="test" inheritall="false" failonerror="true">
|
2010-03-17 18:25:11 -04:00
|
|
|
<fileset dir="lucene" includes="build.xml" />
|
2010-05-05 10:26:59 -04:00
|
|
|
<fileset dir="modules" includes="build.xml" />
|
2010-03-17 18:25:11 -04:00
|
|
|
<fileset dir="solr" includes="build.xml" />
|
2010-03-17 17:31:44 -04:00
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</target>
|
2012-02-13 09:12:59 -05:00
|
|
|
|
2011-11-21 10:45:07 -05:00
|
|
|
<target name="javadocs" description="Generate Lucene and Solr javadocs">
|
|
|
|
<sequential>
|
|
|
|
<subant target="javadocs" inheritall="false" failonerror="true">
|
|
|
|
<fileset dir="lucene" includes="build.xml" />
|
|
|
|
<fileset dir="modules" includes="build.xml" />
|
|
|
|
<fileset dir="solr" includes="build.xml" />
|
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</target>
|
2012-02-13 09:12:59 -05:00
|
|
|
|
2011-03-18 14:40:02 -04:00
|
|
|
<target name="validate" description="Validate dependencies, licenses, etc.">
|
|
|
|
<sequential><subant target="validate" inheritall="false" failonerror="true">
|
|
|
|
<fileset dir="lucene" includes="build.xml" />
|
|
|
|
<fileset dir="modules" includes="build.xml" />
|
|
|
|
<fileset dir="solr" includes="build.xml" />
|
|
|
|
</subant></sequential>
|
|
|
|
</target>
|
2012-02-13 09:12:59 -05:00
|
|
|
|
2011-04-15 20:50:56 -04:00
|
|
|
<target name="compile" description="Compile Lucene and Solr">
|
2010-04-13 09:28:56 -04:00
|
|
|
<sequential>
|
2011-03-18 14:40:02 -04:00
|
|
|
|
2010-04-13 09:28:56 -04:00
|
|
|
<subant target="compile" inheritall="false" failonerror="true">
|
2010-05-07 18:51:45 -04:00
|
|
|
<fileset dir="lucene" includes="build.xml" />
|
2010-05-05 10:26:59 -04:00
|
|
|
<fileset dir="modules" includes="build.xml" />
|
2010-04-13 09:28:56 -04:00
|
|
|
<fileset dir="solr" includes="build.xml" />
|
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</target>
|
|
|
|
|
2011-01-22 02:26:17 -05:00
|
|
|
<property name="version" value="4.0-SNAPSHOT"/>
|
2011-01-20 22:44:13 -05:00
|
|
|
<target name="get-maven-poms"
|
|
|
|
description="Copy Maven POMs from dev-tools/maven/ to their target locations">
|
2011-01-24 14:33:14 -05:00
|
|
|
<copy todir="." overwrite="true">
|
2011-01-20 22:44:13 -05:00
|
|
|
<fileset dir="${basedir}/dev-tools/maven"/>
|
2011-01-22 02:26:17 -05:00
|
|
|
<filterset begintoken="@" endtoken="@">
|
|
|
|
<filter token="version" value="${version}"/>
|
|
|
|
</filterset>
|
|
|
|
<globmapper from="*.template" to="*"/>
|
2011-01-20 22:44:13 -05:00
|
|
|
</copy>
|
|
|
|
</target>
|
|
|
|
|
2010-06-16 22:25:11 -04:00
|
|
|
<target name="generate-maven-artifacts" description="Generate Maven Artifacts for Lucene and Solr">
|
2010-09-19 23:58:23 -04:00
|
|
|
<property name="maven.dist.dir" location="dist/maven" />
|
|
|
|
<mkdir dir="${maven.dist.dir}" />
|
|
|
|
|
2010-06-16 22:25:11 -04:00
|
|
|
<sequential>
|
|
|
|
<subant target="generate-maven-artifacts" inheritall="false" failonerror="true">
|
2010-09-19 23:58:23 -04:00
|
|
|
<property name="maven.dist.dir" location="${maven.dist.dir}" />
|
2010-06-16 22:25:11 -04:00
|
|
|
<fileset dir="lucene" includes="build.xml" />
|
2010-08-19 15:58:36 -04:00
|
|
|
<fileset dir="modules" includes="build.xml" />
|
2010-06-16 22:25:11 -04:00
|
|
|
<fileset dir="solr" includes="build.xml" />
|
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</target>
|
|
|
|
|
2010-12-31 16:08:18 -05:00
|
|
|
<target name="eclipse" description="Setup Eclipse configuration">
|
2011-05-24 02:05:30 -04:00
|
|
|
<copy file="dev-tools/eclipse/dot.project" tofile=".project" overwrite="false"/>
|
2010-12-31 16:08:18 -05:00
|
|
|
<copy file="dev-tools/eclipse/dot.classpath" tofile=".classpath" overwrite="true"/>
|
|
|
|
<mkdir dir=".settings"/>
|
2012-02-15 15:47:00 -05:00
|
|
|
<copy todir=".settings/" overwrite="true">
|
|
|
|
<fileset dir="dev-tools/eclipse/dot.settings" includes="*.prefs" />
|
|
|
|
</copy>
|
2010-12-31 16:08:18 -05:00
|
|
|
<echo>
|
2012-02-15 15:47:00 -05:00
|
|
|
SUCCESS: You must right-click your project and choose Refresh.
|
|
|
|
Your project must use a Java 6 JRE.
|
2010-12-31 16:08:18 -05:00
|
|
|
</echo>
|
|
|
|
</target>
|
|
|
|
|
2011-02-24 08:02:44 -05:00
|
|
|
<target name="idea" description="Setup IntelliJ IDEA configuration">
|
2010-12-30 14:49:51 -05:00
|
|
|
<copy todir=".">
|
2011-02-24 08:02:44 -05:00
|
|
|
<fileset dir="dev-tools/idea"/>
|
2010-12-30 14:49:51 -05:00
|
|
|
</copy>
|
|
|
|
<echo>
|
|
|
|
To complete IntelliJ IDEA setup, you must manually configure
|
|
|
|
Project Structure | Project | Project SDK.
|
|
|
|
</echo>
|
|
|
|
</target>
|
2011-02-24 08:02:44 -05:00
|
|
|
<target name="clean-idea"
|
2010-12-30 14:49:51 -05:00
|
|
|
description="Removes all IntelliJ IDEA configuration files">
|
|
|
|
<delete dir=".idea" failonerror="true"/>
|
|
|
|
<delete failonerror="true">
|
|
|
|
<fileset dir="." includes="*.iml,*.ipr,*.iws"/>
|
|
|
|
<fileset dir="solr" includes="**/*.iml"/>
|
|
|
|
<fileset dir="lucene" includes="**/*.iml"/>
|
2011-07-11 17:55:53 -04:00
|
|
|
<fileset dir="modules" includes="**/*.iml"/>
|
2010-12-30 14:49:51 -05:00
|
|
|
</delete>
|
|
|
|
</target>
|
|
|
|
|
2010-04-13 09:28:56 -04:00
|
|
|
<target name="clean" description="Clean Lucene and Solr">
|
2010-09-19 23:58:23 -04:00
|
|
|
<delete dir="dist" />
|
2010-03-17 18:25:11 -04:00
|
|
|
<sequential>
|
|
|
|
<subant target="clean" inheritall="false" failonerror="true">
|
|
|
|
<fileset dir="lucene" includes="build.xml" />
|
2010-05-05 10:26:59 -04:00
|
|
|
<fileset dir="modules" includes="build.xml" />
|
2010-03-17 18:25:11 -04:00
|
|
|
<fileset dir="solr" includes="build.xml" />
|
|
|
|
</subant>
|
|
|
|
</sequential>
|
|
|
|
</target>
|
|
|
|
|
2010-04-13 09:28:56 -04:00
|
|
|
</project>
|