2011-10-31 18:23:01 -04:00
|
|
|
<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-langid</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Apache Solr Language Identifier</name>
|
|
|
|
<description>
|
|
|
|
This module is intended to be used while indexing documents.
|
|
|
|
It is implemented as an UpdateProcessor to be placed in an UpdateChain.
|
|
|
|
Its purpose is to identify language from documents and tag the document with language code.
|
|
|
|
</description>
|
|
|
|
<properties>
|
2012-02-27 01:02:06 -05:00
|
|
|
<module-directory>solr/contrib/langid</module-directory>
|
2012-05-08 00:33:02 -04:00
|
|
|
<top-level>../../../..</top-level>
|
|
|
|
<module-path>${top-level}/${module-directory}</module-path>
|
2011-10-31 18:23:01 -04:00
|
|
|
</properties>
|
2012-02-27 01:02:06 -05:00
|
|
|
<scm>
|
2012-08-07 16:47:05 -04:00
|
|
|
<connection>scm:svn:${vc-anonymous-base-url}/${module-directory}</connection>
|
|
|
|
<developerConnection>scm:svn:${vc-dev-base-url}/${module-directory}</developerConnection>
|
|
|
|
<url>${vc-browse-base-url}/${module-directory}</url>
|
2012-02-27 01:02:06 -05:00
|
|
|
</scm>
|
2011-10-31 18:23:01 -04:00
|
|
|
<dependencies>
|
2012-01-18 18:03:41 -05:00
|
|
|
<dependency>
|
|
|
|
<!-- lucene-test-framework dependency must be declared before lucene-core -->
|
|
|
|
<!-- This dependency cannot be put into solr-parent, because local -->
|
|
|
|
<!-- dependencies are always ordered before inherited dependencies. -->
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-test-framework</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-10-31 18:23:01 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>solr-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>solr-test-framework</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-02 22:59:42 -04:00
|
|
|
<groupId>net.arnx</groupId>
|
|
|
|
<artifactId>jsonic</artifactId>
|
2011-10-31 18:23:01 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2012-04-03 20:47:22 -04:00
|
|
|
<groupId>com.cybozu.labs</groupId>
|
|
|
|
<artifactId>langdetect</artifactId>
|
2011-10-31 18:23:01 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.tika</groupId>
|
|
|
|
<artifactId>tika-parsers</artifactId>
|
|
|
|
</dependency>
|
2012-03-21 15:25:26 -04:00
|
|
|
<dependency>
|
|
|
|
<!-- SOLR-3263: Test scope dep is required to avoid jar signing conflicts -->
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-10-31 18:23:01 -04:00
|
|
|
</dependencies>
|
|
|
|
<build>
|
2012-05-08 00:33:02 -04:00
|
|
|
<sourceDirectory>${module-path}/src/java</sourceDirectory>
|
|
|
|
<testSourceDirectory>${module-path}/src/test</testSourceDirectory>
|
2011-10-31 18:23:01 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
2012-05-08 00:33:02 -04:00
|
|
|
<directory>${module-path}/src/resources</directory>
|
2011-10-31 18:23:01 -04:00
|
|
|
</resource>
|
|
|
|
</resources>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
2012-05-08 00:33:02 -04:00
|
|
|
<directory>${module-path}/src/test-files</directory>
|
2011-10-31 18:23:01 -04:00
|
|
|
</testResource>
|
2012-08-12 15:58:13 -04:00
|
|
|
<testResource>
|
|
|
|
<directory>${top-level}/dev-tools/maven/solr</directory>
|
|
|
|
<includes>
|
|
|
|
<include>maven.testlogging.properties</include>
|
|
|
|
</includes>
|
|
|
|
</testResource>
|
2011-10-31 18:23:01 -04:00
|
|
|
</testResources>
|
|
|
|
</build>
|
|
|
|
</project>
|