lucene/modules/analysis
Uwe Schindler 987f32849b LUCENE-2708: when a test Assume fails, display information, improved one
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1023312 13f79535-47bb-0310-9956-ffa450edef68
2010-10-16 15:43:11 +00:00
..
common LUCENE-2708: when a test Assume fails, display information, improved one 2010-10-16 15:43:11 +00:00
icu LUCENE-2683: upgrade icu libraries to 4.4.2 2010-10-04 17:53:41 +00:00
phonetic clear up javadocs warnings/errors (forgot to svn add these overview.htmls) 2010-10-03 13:30:29 +00:00
smartcn clear up more compiler warnings 2010-10-02 22:20:26 +00:00
stempel clear up javadocs warnings/errors 2010-10-03 13:22:51 +00:00
CHANGES.txt LUCENE-2699: Update StandardTokenizer and UAX29Tokenizer to Unicode 6.0.0 2010-10-15 05:41:54 +00:00
LICENSE.txt LUCENE-2444: boilerplate stuff for the analyzers module 2010-05-05 16:27:58 +00:00
NOTICE.txt LUCENE-2167: Implement StandardTokenizer with the UAX#29 Standard 2010-09-28 06:16:16 +00:00
README.txt LUCENE-2413: consolidate remaining solr tokenstreams into modules/analysis 2010-06-23 11:25:17 +00:00
build.xml getting 'generate-maven-artifacts' to work with analysis module 2010-08-19 19:58:36 +00:00

README.txt

Analysis README file

INTRODUCTION

The Analysis Module provides analysis capabilities to Lucene and Solr
applications.

The Lucene web site is at:
  http://lucene.apache.org/

Please join the Lucene-User mailing list by sending a message to:
  java-user-subscribe@lucene.apache.org

FILES

lucene-analyzers-common-XX.jar
  The primary analysis module library, containing general-purpose analysis
  components and support for various languages.

lucene-analyzers-icu-XX.jar
  An add-on analysis library that provides improved Unicode support via
  International Components for Unicode (ICU). Note: this module depends on
  the ICU4j jar file (version >= 4.4.0)

lucene-analyzers-phonetic-XX.jar
  An add-on analysis library that provides phonetic encoders via Apache
  Commons-Codec. Note: this module depends on the commons-codec jar 
  file (version >= 1.4)
  
lucene-analyzers-smartcn-XX.jar
  An add-on analysis library that provides word segmentation for Simplified
  Chinese.

lucene-analyzers-stempel-XX.jar
  An add-on analysis library that contains a universal algorithmic stemmer,
  including tables for the Polish language.

common/src/java
icu/src/java
phonetic/src/java
smartcn/src/java
stempel/src/java
  The source code for the ffve libraries.

common/src/test
icu/src/test
phonetic/src/test
smartcn/src/test
stempel/src/test
  Unit tests for the five libraries.