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>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-analysis-icu</artifactId>
|
2014-03-26 11:42:14 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
<packaging>jar</packaging>
|
2014-03-03 04:41:25 -05:00
|
|
|
<name>Elasticsearch ICU Analysis plugin</name>
|
2014-02-28 17:09:56 -05:00
|
|
|
<description>The ICU Analysis plugin integrates Lucene ICU module into elasticsearch, adding ICU relates analysis components.</description>
|
2015-03-24 12:49:18 -04:00
|
|
|
<url>https://github.com/elastic/elasticsearch-analysis-icu/</url>
|
2011-12-05 06:31:59 -05:00
|
|
|
<inceptionYear>2009</inceptionYear>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<scm>
|
2015-03-24 12:49:18 -04:00
|
|
|
<connection>scm:git:git@github.com:elastic/elasticsearch-analysis-icu.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:elastic/elasticsearch-analysis-icu.git
|
2011-12-05 06:31:59 -05:00
|
|
|
</developerConnection>
|
2015-03-24 12:49:18 -04:00
|
|
|
<url>http://github.com/elastic/elasticsearch-analysis-icu</url>
|
2011-12-05 06:31:59 -05:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<parent>
|
2014-12-12 10:23:28 -05:00
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-parent</artifactId>
|
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
2013-12-19 03:56:19 -05:00
|
|
|
<tests.jvms>1</tests.jvms>
|
|
|
|
<es.logger.level>INFO</es.logger.level>
|
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>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-01-02 14:35:26 -05:00
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>oss-snapshots</id>
|
|
|
|
<name>Sonatype OSS Snapshots</name>
|
|
|
|
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2013-02-04 05:54:15 -05:00
|
|
|
</project>
|