2012-04-30 13:42:59 +03: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 18:34:32 +01:00
|
|
|
|
2015-06-05 13:12:07 +02:00
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
2012-04-30 13:42:59 +03:00
|
|
|
<artifactId>elasticsearch-analysis-kuromoji</artifactId>
|
2015-06-05 13:12:07 +02:00
|
|
|
|
2012-04-30 13:42:59 +03:00
|
|
|
<packaging>jar</packaging>
|
2014-03-03 10:36:55 +01:00
|
|
|
<name>Elasticsearch Japanese (kuromoji) Analysis plugin</name>
|
2014-02-28 23:27:37 +01:00
|
|
|
<description>The Japanese (kuromoji) Analysis plugin integrates Lucene kuromoji analysis module into elasticsearch.</description>
|
2012-04-30 13:42:59 +03:00
|
|
|
|
2015-03-24 18:43:33 +01:00
|
|
|
<parent>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
2015-05-21 22:51:02 -04:00
|
|
|
<artifactId>elasticsearch-plugin</artifactId>
|
2015-03-24 18:43:33 +01:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2012-04-30 13:42:59 +03:00
|
|
|
<properties>
|
2014-12-12 18:34:32 +01:00
|
|
|
<!-- You can add any specific project property here -->
|
2012-04-30 13:42:59 +03:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
2013-02-24 21:46:34 +01:00
|
|
|
<artifactId>lucene-analyzers-kuromoji</artifactId>
|
2012-04-30 13:42:59 +03:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2014-12-12 18:49:53 +01:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2012-04-30 13:42:59 +03:00
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2014-03-06 14:46:12 -08:00
|
|
|
|
2013-02-24 21:46:34 +01:00
|
|
|
</project>
|