| 组织ID: |
org.elasticsearch |
| 项目ID: |
elasticsearch-analysis-pinyin |
| 版本: |
5.0.0 |
| 最后修改时间: |
2019-11-02 10:02:50 |
| 包类型: |
jar |
| 标题: |
elasticsearch-analysis-pinyin |
| 描述: |
Pinyin Analysis for Elasticsearch |
| 大小: |
22.55KB |
|
|
| Maven引入代码: |
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-analysis-pinyin</artifactId>
<version>5.0.0</version>
</dependency>
|
| Gradle引入代码: |
org.elasticsearch:elasticsearch-analysis-pinyin:5.0.0
|
| 下载Jar包: |
|
| POM文件内容: |
<?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">
<name>elasticsearch-analysis-pinyin</name>
<modelVersion>4.0.0</modelVersion>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-analysis-pinyin</artifactId>
<version>${elasticsearch.version}</version>
<packaging>jar</packaging>
<description>Pinyin Analysis for Elasticsearch</description>
<inceptionYear>2012</inceptionYear>
<properties>
<elasticsearch.version>5.0.0</elasticsearch.version>
<maven.compiler.target>1.8</maven.compiler.target>
<elasticsearch.assembly.descriptor>${project.basedir}/src/main/assemblies/plugin.xml</elasticsearch.assembly.descriptor>
<elasticsearch.plugin.name>analysis-pinyin</elasticsearch.plugin.name>
<elasticsearch.plugin.classname>org.elasticsearch.plugin.analysis.pinyin.AnalysisPinyinPlugin</elasticsearch.plugin.classname>
<elasticsearch.plugin.jvm>true</elasticsearch.plugin.jvm>
<tests.rest.load_packaged>false</tests.rest.load_packaged>
<skip.unit.tests>true</skip.unit.tests>
<gpg.keyname>4E899B30</gpg.keyname>
<gpg.useagent>true</gpg.useagent>
</properties>
<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>
<developers>
<developer>
<name>Medcl</name>
<email>medcl@elastic.co</email>
<organization>elastic</organization>
<organizationUrl>http://www.elastic.co</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:medcl/elasticsearch-analysis-pinyin.git</connection>
<developerConnection>scm:git:git@github.com:medcl/elasticsearch-analysis-pinyin.git
</developerConnection>
<url>http://github.com/medcl/elasticsearch-analysis-pinyin</url>
</scm>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<repositories>
<repository>
<id>oss.sonatype.org</id>
<name>OSS Sonatype</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<url>http://oss.sonatype.org/content/repositories/releases/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.nlpcn</groupId>
<artifactId>nlp-lang</artifactId>
<version>1.7</version>
<systemPath>${basedir}/lib/nlp-lang-1.7.jar</systemPath>
<scope>system</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3.RC2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>1.3.RC2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-junit4</artifactId>
<version>1.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.6.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>1.7.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.openpojo</groupId>
<artifactId>openpojo</artifactId>
<version>0.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${maven.compiler.target}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<outputDirectory>${project.build.directory}/releases/</outputDirectory>
<descriptors>
<descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>disable-java8-doclint</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<properties>
<additionalparam>-Xdoclint:none</additionalparam>
</properties>
</profile>
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>oss</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.1</version>
<configuration>
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>release</releaseProfiles>
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.5.1</version>
<configuration>
<source>${maven.compiler.target}</source>
<target>${maven.compiler.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Jar包内容: |
META-INF/MANIFEST.MF
org.elasticsearch.analysis.PinyinConfig.class
org.elasticsearch.index.analysis.ConfigErrorException.class
org.elasticsearch.index.analysis.PinyinAbbreviationsTokenizerFactory.class
org.elasticsearch.index.analysis.PinyinAlphabetDict.class
org.elasticsearch.index.analysis.PinyinAlphabetTokenizer.class
org.elasticsearch.index.analysis.PinyinAnalyzer.class
org.elasticsearch.index.analysis.PinyinAnalyzerProvider.class
org.elasticsearch.index.analysis.PinyinTokenFilter.class
org.elasticsearch.index.analysis.PinyinTokenFilterFactory.class
org.elasticsearch.index.analysis.PinyinTokenizer.class
org.elasticsearch.index.analysis.PinyinTokenizerFactory.class
org.elasticsearch.index.analysis.TermItem.class
org.elasticsearch.plugin.analysis.pinyin.AnalysisPinyinPlugin.class
pinyin_alphabet.dict
plugin-descriptor.properties
META-INF/maven/org.elasticsearch/elasticsearch-analysis-pinyin/pom.xml
META-INF/maven/org.elasticsearch/elasticsearch-analysis-pinyin/pom.properties
|
| 依赖Jar: |
nlp-lang-1.7.jar
/org.nlpcn/nlp-lang/1.7
查看nlp-lang所有版本文件
elasticsearch-${elasticsearch.version}.jar
/org.elasticsearch/elasticsearch/${elasticsearch.version}
查看elasticsearch所有版本文件
log4j-1.2.16.jar
/log4j/log4j/1.2.16
查看log4j所有版本文件
hamcrest-core-1.3.RC2.jar
/org.hamcrest/hamcrest-core/1.3.RC2
查看hamcrest-core所有版本文件
hamcrest-library-1.3.RC2.jar
/org.hamcrest/hamcrest-library/1.3.RC2
查看hamcrest-library所有版本文件
powermock-module-junit4-1.6.2.jar
/org.powermock/powermock-module-junit4/1.6.2
查看powermock-module-junit4所有版本文件
powermock-api-mockito-1.6.2.jar
/org.powermock/powermock-api-mockito/1.6.2
查看powermock-api-mockito所有版本文件
equalsverifier-1.7.5.jar
/nl.jqno.equalsverifier/equalsverifier/1.7.5
查看equalsverifier所有版本文件
openpojo-0.8.1.jar
/com.openpojo/openpojo/0.8.1
查看openpojo所有版本文件
junit-4.9.jar
/junit/junit/4.9
查看junit所有版本文件
|