Maven Repository - POM file for Search lucene-analyzers 3.6.2 3.6.2

Summary

Lucene Common Analyzers.

Additional Analyzers.

Declaration

Here is the list of declaration for lucene-analyzers. 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</artifactId>
   <version>3.6.2</version>
</dependency>

If you think this Maven repository POM file listing for lucene-analyzers is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

License

Apache License.

Plugin

The following plugins are used in the lucene-analyzers-3.6.2.jar

  1. appassembler-maven-plugin




Packages

The following packages are defined in the lucene-analyzers-3.6.2.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.compound
org.apache.lucene.analysis.compound.hyphenation
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.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.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.tartarus.snowball
org.tartarus.snowball.ext




POM File Source

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>3.6.2</version>
    <relativePath>../../../pom.xml</relativePath>
  </parent>
  <groupId>org.apache.lucene</groupId>
  <artifactId>lucene-analyzers</artifactId>
  <packaging>jar</packaging>
  <name>Lucene Common Analyzers</name>
  <description>Additional Analyzers</description>
  <properties>
    <module-directory>lucene/contrib/analyzers/common</module-directory>
    <build-directory>../../../build/contrib/analyzers/common</build-directory>
  </properties>
  <scm>
    <connection>
      scm:svn:http://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/${module-directory}
    </connection>
    <developerConnection>
      scm:svn:https://svn.apache.org/repos/asf/lucene/dev/branches/branch_3x/${module-directory}
    </developerConnection>
    <url>
      http://svn.apache.org/viewvc/lucene/dev/branches/branch_3x/${module-directory}
    </url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>lucene-core</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>lucene-test-framework</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <directory>${build-directory}</directory>
    <outputDirectory>${build-directory}/classes/java</outputDirectory>
    <testOutputDirectory>${build-directory}/classes/test</testOutputDirectory>
    <sourceDirectory>src/java</sourceDirectory>
    <testSourceDirectory>src/test</testSourceDirectory>
    <resources>
      <resource>
        <directory>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>