mirror of https://github.com/apache/lucene.git
129 lines
4.5 KiB
Plaintext
129 lines
4.5 KiB
Plaintext
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<!--
|
|
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.
|
|
-->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.apache.solr</groupId>
|
|
<artifactId>solr-parent</artifactId>
|
|
<version>@version@</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
<groupId>org.apache.solr</groupId>
|
|
<artifactId>solr</artifactId>
|
|
<packaging>war</packaging>
|
|
<name>Apache Solr Search Server</name>
|
|
<description>Apache Solr Search Server</description>
|
|
<properties>
|
|
<module-directory>solr/webapp</module-directory>
|
|
<build-directory>../build</build-directory>
|
|
</properties>
|
|
<scm>
|
|
<connection>
|
|
scm:svn:http://svn.apache.org/repos/asf/lucene/dev/trunk/${module-directory}
|
|
</connection>
|
|
<developerConnection>
|
|
scm:svn:https://svn.apache.org/repos/asf/lucene/dev/trunk/${module-directory}
|
|
</developerConnection>
|
|
<url>
|
|
http://svn.apache.org/viewvc/lucene/dev/trunk/${module-directory}
|
|
</url>
|
|
</scm>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>solr-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>solr-solrj</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
<artifactId>javax.servlet</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-jdk14</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>log4j-over-slf4j</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<directory>${build-directory}</directory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip> <!-- There are no public or protected classes -->
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<configuration>
|
|
<!-- There are no sources for the Solr WAR, but -->
|
|
<!-- the maven-source-plugin has no "skip" option. -->
|
|
<!-- Setting attach=false prevents the built jar -->
|
|
<!-- from being installed or deployed. -->
|
|
<attach>false</attach>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<configuration>
|
|
<warSourceDirectory>web</warSourceDirectory>
|
|
<webXml>web/WEB-INF/web.xml</webXml>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<!-- http://wiki.eclipse.org/Jetty/Feature/Jetty_Maven_Plugin -->
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
<configuration>
|
|
<scanIntervalSeconds>10</scanIntervalSeconds>
|
|
<webAppConfig>
|
|
<contextPath>/solr</contextPath>
|
|
</webAppConfig>
|
|
<webAppSourceDirectory>web</webAppSourceDirectory>
|
|
<systemProperties>
|
|
<systemProperty>
|
|
<name>solr.solr.home</name>
|
|
<value>../example/solr</value>
|
|
</systemProperty>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|