OpenSearch/pom.xml

62 lines
2.2 KiB
XML
Raw Normal View History

2012-01-07 16:06:50 -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>
2012-01-07 16:06:50 -05:00
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-analysis-phonetic</artifactId>
<version>3.0.0-SNAPSHOT</version>
2012-01-07 16:06:50 -05:00
<packaging>jar</packaging>
<name>Elasticsearch Phonetic Analysis plugin</name>
<description>The Phonetic Analysis plugin integrates phonetic token filter analysis with elasticsearch.</description>
2015-03-24 13:34:02 -04:00
<url>https://github.com/elastic/elasticsearch-analysis-phonetic/</url>
2012-01-07 16:06:50 -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 13:34:02 -04:00
<connection>scm:git:git@github.com:elastic/elasticsearch-analysis-phonetic.git</connection>
<developerConnection>scm:git:git@github.com:elastic/elasticsearch-analysis-phonetic.git</developerConnection>
<url>http://github.com/elastic/elasticsearch-analysis-phonetic</url>
2012-01-07 16:06:50 -05:00
</scm>
<parent>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-parent</artifactId>
<version>2.0.0-SNAPSHOT</version>
</parent>
2012-01-07 16:06:50 -05:00
<properties>
<!-- You can add any specific project property here -->
2012-01-07 16:06:50 -05:00
</properties>
<dependencies>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-analyzers-phonetic</artifactId>
2012-01-07 16:06:50 -05:00
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
2012-01-07 16:06:50 -05:00
<artifactId>maven-assembly-plugin</artifactId>
</plugin>
</plugins>
</build>
2015-01-02 14:40:18 -05:00
<repositories>
<repository>
<id>oss-snapshots</id>
<name>Sonatype OSS Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
</repository>
</repositories>
</project>