Lucene Common Analyzers.
Additional Analyzers.
Here is the list of declaration for lucene-analyzers-common. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-common</artifactId> <version>4.0.0-BETA</version> </dependency>
If you think this Maven repository POM file listing for lucene-analyzers-common is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The following plugins are used in the lucene-analyzers-common-4.0.0-BETA.jar
The following packages are defined in the lucene-analyzers-common-4.0.0-BETA.jar
org.apache.lucene.analysis.ar org.apache.lucene.analysis.bg org.apache.lucene.analysis.br org.apache.lucene.analysis.ca org.apache.lucene.analysis.charfilter org.apache.lucene.analysis.cjk org.apache.lucene.analysis.cn org.apache.lucene.analysis.commongrams org.apache.lucene.analysis.compound org.apache.lucene.analysis.compound.hyphenation org.apache.lucene.analysis.core org.apache.lucene.analysis.cz org.apache.lucene.analysis.da org.apache.lucene.analysis.de org.apache.lucene.analysis.el org.apache.lucene.analysis.en org.apache.lucene.analysis.es org.apache.lucene.analysis.eu org.apache.lucene.analysis.fa org.apache.lucene.analysis.fi org.apache.lucene.analysis.fr org.apache.lucene.analysis.ga org.apache.lucene.analysis.gl org.apache.lucene.analysis.hi org.apache.lucene.analysis.hu org.apache.lucene.analysis.hunspell org.apache.lucene.analysis.hy org.apache.lucene.analysis.id org.apache.lucene.analysis.in org.apache.lucene.analysis.it org.apache.lucene.analysis.lv org.apache.lucene.analysis.miscellaneous org.apache.lucene.analysis.ngram org.apache.lucene.analysis.nl org.apache.lucene.analysis.no org.apache.lucene.analysis.path org.apache.lucene.analysis.pattern org.apache.lucene.analysis.payloads org.apache.lucene.analysis.position org.apache.lucene.analysis.pt org.apache.lucene.analysis.query org.apache.lucene.analysis.reverse org.apache.lucene.analysis.ro org.apache.lucene.analysis.ru org.apache.lucene.analysis.shingle org.apache.lucene.analysis.sinks org.apache.lucene.analysis.snowball org.apache.lucene.analysis.standard org.apache.lucene.analysis.standard.std31 org.apache.lucene.analysis.standard.std34 org.apache.lucene.analysis.standard.std36 org.apache.lucene.analysis.sv org.apache.lucene.analysis.synonym org.apache.lucene.analysis.th org.apache.lucene.analysis.tr org.apache.lucene.analysis.util org.apache.lucene.analysis.wikipedia org.apache.lucene.collation org.apache.lucene.collation.tokenattributes org.tartarus.snowball org.tartarus.snowball.ext
Here is the content of the POM file.
<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/maven-v4_0_0.xsd"> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.lucene</groupId> <artifactId>lucene-parent</artifactId> <version>4.0.0-BETA</version> <relativePath>../../pom.xml</relativePath> </parent> <groupId>org.apache.lucene</groupId> <artifactId>lucene-analyzers-common</artifactId> <packaging>jar</packaging> <name>Lucene Common Analyzers</name> <description>Additional Analyzers</description> <properties> <module-directory>lucene/analysis/common</module-directory> <top-level>../../../..</top-level> <module-path>${top-level}/${module-directory}</module-path> </properties> <scm> <connection> scm:svn:http://svn.apache.org/repos/asf/lucene/dev/trunk/${module-directory} </connection> <developerConnection> scm:svn:https://svn.apache.org/repos/asf/lucene/dev/trunk/${module-directory} </developerConnection> <url> http://svn.apache.org/viewvc/lucene/dev/trunk/${module-directory} </url> </scm> <dependencies> <dependency> <!-- lucene-test-framework dependency must be declared before lucene-core --> <groupId>${project.groupId}</groupId> <artifactId>lucene-test-framework</artifactId> <version>${project.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>lucene-core</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <sourceDirectory>${module-path}/src/java</sourceDirectory> <testSourceDirectory>${module-path}/src/test</testSourceDirectory> <resources> <resource> <directory>${module-path}/src/resources</directory> </resource> </resources> <testResources> <testResource> <directory>${project.build.testSourceDirectory}</directory> <excludes> <exclude>**/*.java</exclude> </excludes> </testResource> </testResources> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>appassembler-maven-plugin</artifactId> <configuration> <extraJvmArguments>-Xmx128M</extraJvmArguments> <repositoryLayout>flat</repositoryLayout> <platforms> <platform>windows</platform> <platform>unix</platform> </platforms> <programs> <program> <mainClass>org.apache.lucene.analysis.charfilter.HtmlStripCharFilter</mainClass> <name>HtmlStripCharFilter</name> </program> <program> <mainClass>org.apache.lucene.analysis.en.PorterStemmer</mainClass> <name>EnglishPorterStemmer</name> </program> <program> <mainClass>org.tartarus.snowball.TestApp</mainClass> <name>SnowballTestApp</name> </program> </programs> </configuration> </plugin> </plugins> </build> </project>