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">
|
|
|
|
<name>elasticsearch-analysis-icu</name>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch-analysis-icu</artifactId>
|
2013-12-19 04:04:19 -05:00
|
|
|
<version>1.14.0-SNAPSHOT</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>ICU Analysis for ElasticSearch</description>
|
|
|
|
<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>
|
|
|
|
<connection>scm:git:git@github.com:elasticsearch/elasticsearch-analysis-icu.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:elasticsearch/elasticsearch-analysis-icu.git
|
|
|
|
</developerConnection>
|
|
|
|
<url>http://github.com/elasticsearch/elasticsearch-analysis-icu</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<properties>
|
2013-12-19 03:46:47 -05:00
|
|
|
<elasticsearch.version>0.90.8</elasticsearch.version>
|
|
|
|
<lucene.version>4.6.0</lucene.version>
|
2013-12-19 03:56:19 -05:00
|
|
|
<tests.jvms>1</tests.jvms>
|
|
|
|
<tests.shuffle>true</tests.shuffle>
|
|
|
|
<tests.output>onerror</tests.output>
|
|
|
|
<tests.client.ratio></tests.client.ratio>
|
|
|
|
<es.logger.level>INFO</es.logger.level>
|
2011-12-05 06:31:59 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
2012-06-10 15:55:08 -04:00
|
|
|
<repository>
|
|
|
|
<id>sonatype</id>
|
|
|
|
<url>http://oss.sonatype.org/content/repositories/releases/</url>
|
|
|
|
</repository>
|
2011-12-05 06:31:59 -05:00
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2013-12-19 03:56:19 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-all</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-test-framework</artifactId>
|
|
|
|
<version>${lucene.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2011-12-05 06:31:59 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
2013-02-04 05:54:15 -05:00
|
|
|
<artifactId>lucene-analyzers-icu</artifactId>
|
2013-02-24 16:18:15 -05:00
|
|
|
<version>${lucene.version}</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
2012-09-27 04:23:19 -04:00
|
|
|
<version>1.2.17</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2013-12-19 03:56:19 -05:00
|
|
|
<groupId>org.elasticsearch</groupId>
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
<version>${elasticsearch.version}</version>
|
|
|
|
<type>test-jar</type>
|
2011-12-05 06:31:59 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>2.3.2</version>
|
|
|
|
<configuration>
|
|
|
|
<source>1.6</source>
|
|
|
|
<target>1.6</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2012-09-27 04:23:19 -04:00
|
|
|
<version>2.12.3</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/*Tests.java</include>
|
|
|
|
</includes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<version>2.1.2</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>attach-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
2012-02-26 17:26:43 -05:00
|
|
|
<version>2.3</version>
|
2011-12-05 06:31:59 -05:00
|
|
|
<configuration>
|
2012-02-26 03:08:32 -05:00
|
|
|
<appendAssemblyId>false</appendAssemblyId>
|
2011-12-13 08:03:24 -05:00
|
|
|
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
|
2011-12-05 06:31:59 -05:00
|
|
|
<descriptors>
|
|
|
|
<descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor>
|
|
|
|
</descriptors>
|
|
|
|
</configuration>
|
2011-12-13 08:03:24 -05:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2011-12-05 06:31:59 -05:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-02-04 05:54:15 -05:00
|
|
|
</project>
|
2013-02-24 16:18:15 -05:00
|
|
|
|