mirror of https://github.com/apache/lucene.git
133 lines
4.6 KiB
XML
133 lines
4.6 KiB
XML
|
<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>4.0-SNAPSHOT</version>
|
||
|
<relativePath>../../../../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<groupId>org.apache.solr</groupId>
|
||
|
<artifactId>solr-dataimporthandler-extras</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
<name>Apache Solr DataImportHandler Extras</name>
|
||
|
<description>Apache Solr DataImportHandler Extras</description>
|
||
|
<properties>
|
||
|
<module-directory>solr/contrib/dataimporthandler/src/extras</module-directory>
|
||
|
<build-directory>../../target/extras</build-directory>
|
||
|
<tests.luceneMatchVersion>4.0</tests.luceneMatchVersion>
|
||
|
</properties>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>solr-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>solr-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>solr-dataimporthandler</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>solr-dataimporthandler</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>${project.groupId}</groupId>
|
||
|
<artifactId>solr-solrj</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.lucene</groupId>
|
||
|
<artifactId>lucene-core</artifactId>
|
||
|
<version>${project.version}</version>
|
||
|
<type>test-jar</type>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.activation</groupId>
|
||
|
<artifactId>activation</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>javax.mail</groupId>
|
||
|
<artifactId>mail</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.tika</groupId>
|
||
|
<artifactId>tika-parsers</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-api</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>xerces</groupId>
|
||
|
<artifactId>xercesImpl</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<directory>${build-directory}</directory>
|
||
|
<outputDirectory>${build-directory}/extras/classes</outputDirectory>
|
||
|
<testOutputDirectory>${build-directory}/extras/test-classes</testOutputDirectory>
|
||
|
<sourceDirectory>main/java</sourceDirectory>
|
||
|
<testSourceDirectory>test/java</testSourceDirectory>
|
||
|
<testResources>
|
||
|
<testResource>
|
||
|
<directory>test/resources</directory>
|
||
|
</testResource>
|
||
|
<testResource>
|
||
|
<directory>../../../../src/test-files</directory>
|
||
|
</testResource>
|
||
|
</testResources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<systemPropertyVariables>
|
||
|
<java.util.logging.config.file>../../../../../../testlogging.properties</java.util.logging.config.file>
|
||
|
</systemPropertyVariables>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|