OpenSearch/pom.xml

63 lines
2.2 KiB
XML
Raw Normal View History

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>
<version>3.0.0-SNAPSHOT</version>
2011-12-05 06:31:59 -05:00
<packaging>jar</packaging>
<name>Elasticsearch ICU Analysis plugin</name>
<description>The ICU Analysis plugin integrates Lucene ICU module into elasticsearch, adding ICU relates analysis components.</description>
<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>
<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>
<url>http://github.com/elastic/elasticsearch-analysis-icu</url>
2011-12-05 06:31:59 -05:00
</scm>
<parent>
<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>
<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>