2012-01-19 08:57:42 -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>
|
2014-12-12 12:50:52 -05:00
|
|
|
|
2015-03-24 13:09:35 -04:00
|
|
|
<parent>
|
2015-07-03 14:00:32 -04:00
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
2015-05-21 22:50:46 -04:00
|
|
|
<artifactId>elasticsearch-plugin</artifactId>
|
2015-07-13 13:45:53 -04:00
|
|
|
<version>2.0.0-beta1-SNAPSHOT</version>
|
2015-03-24 13:09:35 -04:00
|
|
|
</parent>
|
|
|
|
|
2015-07-03 14:00:32 -04:00
|
|
|
<artifactId>elasticsearch-analysis-stempel</artifactId>
|
|
|
|
<name>Elasticsearch Stempel (Polish) Analysis plugin</name>
|
|
|
|
<description>The Stempel (Polish) Analysis plugin integrates Lucene stempel (polish) analysis module into elasticsearch.</description>
|
|
|
|
|
2012-01-19 08:57:42 -05:00
|
|
|
<properties>
|
2015-07-07 01:27:25 -04:00
|
|
|
<tests.rest.suite>analysis_stempel</tests.rest.suite>
|
|
|
|
<tests.rest.load_packaged>false</tests.rest.load_packaged>
|
2012-01-19 08:57:42 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
2013-02-24 17:11:23 -05:00
|
|
|
<artifactId>lucene-analyzers-stempel</artifactId>
|
2012-01-19 08:57:42 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-12-12 12:50:52 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-01-19 08:57:42 -05:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-01-02 14:52:53 -05:00
|
|
|
|
2013-02-24 17:11:23 -05:00
|
|
|
</project>
|