mirror of https://github.com/apache/lucene.git
73 lines
3.1 KiB
XML
73 lines
3.1 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="solr-webapp" default="default">
|
|
<description>Solr webapp</description>
|
|
|
|
<import file="../common-build.xml"/>
|
|
|
|
<property name="exclude.from.war" value="" />
|
|
<property name="solr.war.suffix" value="" />
|
|
|
|
<target name="test" depends="compile-test-solr-core">
|
|
<!-- no more JSP -->
|
|
</target>
|
|
|
|
<!-- this module has no javadocs -->
|
|
<target name="javadocs"/>
|
|
|
|
<!-- this module has no jar either -->
|
|
<target name="jar-core"/>
|
|
|
|
<!-- nothing to compile -->
|
|
<target name="compile-core"/>
|
|
<target name="compile-test"/>
|
|
|
|
<target name="dist"
|
|
description="Creates the Solr WAR Distribution file."
|
|
depends="test, init-dist, dist-core, dist-solrj, lucene-jars-to-solr">
|
|
<build-manifest title="Apache Solr Search Server"
|
|
implementation.title="org.apache.solr"
|
|
spec.version="${spec.version}"/>
|
|
<ant dir="${common-solr.dir}" inheritall="false" target="contribs-add-to-war"/>
|
|
<war destfile="${dist}/solr-${version}${solr.war.suffix}.war"
|
|
webxml="web/WEB-INF/web.xml"
|
|
manifest="${manifest.file}">
|
|
<lib dir="${common-solr.dir}/core/lib" excludes="${exclude.from.war},${common.classpath.excludes}">
|
|
<exclude name="*servlet-api*.jar" />
|
|
<exclude name="easymock-*.jar" />
|
|
<exclude name="cglib-nodep-*.jar" />
|
|
<exclude name="objenesis-*.jar" />
|
|
</lib>
|
|
<lib dir="${common-solr.dir}/solrj/lib" excludes="${exclude.from.war},${common.classpath.excludes}"/>
|
|
<lib dir="${lucene-libs}" excludes="${exclude.from.war},${common.classpath.excludes}" />
|
|
<lib dir="${dist}" excludes="${exclude.from.war},${common.classpath.excludes}">
|
|
<include name="solr-solrj-${version}.jar" />
|
|
<include name="solr-core-${version}.jar" />
|
|
</lib>
|
|
<fileset dir="${dest}/web" excludes="${exclude.from.war}"/> <!-- contribs' additions -->
|
|
<fileset dir="web" excludes="${exclude.from.war}"/>
|
|
<metainf dir="${common-solr.dir}" includes="LICENSE.txt,NOTICE.txt" excludes="${exclude.from.war}"/>
|
|
</war>
|
|
</target>
|
|
|
|
<target name="dist-maven" depends="dist, filter-pom-templates, install-maven-tasks, m2-deploy-solr-parent-pom">
|
|
<m2-deploy jar.file="${dist}/solr-${version}.war"
|
|
pom.xml="${filtered.pom.templates.dir}/solr/webapp/pom.xml"/>
|
|
</target>
|
|
</project>
|