2011-12-05 06:31:59 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
2015-07-03 14:00:32 -04:00
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
2015-05-21 22:50:30 -04:00
|
|
|
<artifactId>elasticsearch-plugin</artifactId>
|
2014-12-12 10:23:28 -05:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
</parent>
|
|
|
|
|
2015-07-03 14:00:32 -04:00
|
|
|
<artifactId>elasticsearch-analysis-icu</artifactId>
|
|
|
|
<name>Elasticsearch ICU Analysis plugin</name>
|
|
|
|
<description>The ICU Analysis plugin integrates Lucene ICU module into elasticsearch, adding ICU relates analysis components.</description>
|
|
|
|
|
2011-12-05 06:31:59 -05:00
|
|
|
<properties>
|
2015-07-07 00:15:49 -04:00
|
|
|
<tests.rest.suite>analysis_icu</tests.rest.suite>
|
|
|
|
<tests.rest.load_packaged>false</tests.rest.load_packaged>
|
2011-12-05 06:31:59 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
2013-02-04 05:54:15 -05:00
|
|
|
<artifactId>lucene-analyzers-icu</artifactId>
|
2011-12-05 06:31:59 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-12-12 10:23:28 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2011-12-05 06:31:59 -05:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
2015-05-23 08:23:37 -04:00
|
|
|
</plugins>
|
|
|
|
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.mycila</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<!-- TODO: https://github.com/elastic/elasticsearch-analysis-icu/issues/29 -->
|
|
|
|
<exclude>**/IndexableBinaryStringTools.java</exclude>
|
|
|
|
<exclude>**/ICUCollationKeyFilter.java</exclude>
|
|
|
|
<exclude>**/TestIndexableBinaryStringTools.java</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2011-12-05 06:31:59 -05:00
|
|
|
</build>
|
2015-01-02 14:35:26 -05:00
|
|
|
|
2013-02-04 05:54:15 -05:00
|
|
|
</project>
|