2011-12-29 04:58:31 -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:44:46 -05:00
|
|
|
|
2015-06-05 07:12:12 -04:00
|
|
|
<groupId>org.elasticsearch.plugin</groupId>
|
2011-12-29 04:58:31 -05:00
|
|
|
<artifactId>elasticsearch-analysis-smartcn</artifactId>
|
2015-06-05 07:12:12 -04:00
|
|
|
|
2011-12-29 04:58:31 -05:00
|
|
|
<packaging>jar</packaging>
|
2014-03-03 04:43:23 -05:00
|
|
|
<name>Elasticsearch Smart Chinese Analysis plugin</name>
|
2014-02-28 11:59:17 -05:00
|
|
|
<description>Smart Chinese Analysis plugin integrates Lucene Smart Chinese analysis module into elasticsearch.</description>
|
2011-12-29 04:58:31 -05:00
|
|
|
|
2015-03-24 13:52:15 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.elasticsearch</groupId>
|
2015-05-21 22:51:30 -04:00
|
|
|
<artifactId>elasticsearch-plugin</artifactId>
|
2015-03-24 13:52:15 -04:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
2011-12-29 04:58:31 -05:00
|
|
|
<properties>
|
2014-12-12 12:44:46 -05:00
|
|
|
<!-- You can add any specific project property here -->
|
2011-12-29 04:58:31 -05:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
2013-02-24 17:16:50 -05:00
|
|
|
<artifactId>lucene-analyzers-smartcn</artifactId>
|
2011-12-29 04:58:31 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2015-01-02 14:43:51 -05:00
|
|
|
|
2013-02-24 17:16:50 -05:00
|
|
|
</project>
|