2012-01-07 23:06:50 +02: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>
|
2014-11-25 11:57:05 +01:00
|
|
|
|
2015-03-24 18:31:36 +01:00
|
|
|
<parent>
|
2015-07-03 20:00:32 +02:00
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
2015-05-21 22:51:16 -04:00
|
|
|
<artifactId>elasticsearch-plugin</artifactId>
|
2015-07-13 19:45:53 +02:00
|
|
|
<version>2.0.0-beta1-SNAPSHOT</version>
|
2015-03-24 18:31:36 +01:00
|
|
|
</parent>
|
|
|
|
|
2015-07-03 20:00:32 +02:00
|
|
|
<artifactId>elasticsearch-analysis-phonetic</artifactId>
|
|
|
|
<name>Elasticsearch Phonetic Analysis plugin</name>
|
|
|
|
<description>The Phonetic Analysis plugin integrates phonetic token filter analysis with elasticsearch.</description>
|
|
|
|
|
2012-01-07 23:06:50 +02:00
|
|
|
<properties>
|
2015-07-07 18:47:59 +02:00
|
|
|
<tests.rest.suite>analysis_phonetic</tests.rest.suite>
|
|
|
|
<tests.rest.load_packaged>false</tests.rest.load_packaged>
|
|
|
|
</properties>
|
2012-01-07 23:06:50 +02:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2012-04-22 12:08:05 +02:00
|
|
|
<groupId>org.apache.lucene</groupId>
|
2013-02-24 23:22:37 +01:00
|
|
|
<artifactId>lucene-analyzers-phonetic</artifactId>
|
2012-01-07 23:06:50 +02:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-11-25 11:57:05 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-01-07 23:06:50 +02:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-01-02 20:40:18 +01:00
|
|
|
|
2013-02-24 23:22:37 +01:00
|
|
|
</project>
|