lucene/lucene
Steven Rowe 534ecb309b LUCENE-3753: Clover fixes: Added non-clover-invoking compile-core target specializations to the lucene/test-framework and lucene/tools modules, since these classes have no tests, and lucene/test-framework sources are already included in every other module's clover instrumentation; and moved generate-clover-reports from lucene/common-build.xml to lucene/build.xml, since it doesn't need to be shared elsewhere.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1241986 13f79535-47bb-0310-9956-ffa450edef68
2012-02-08 17:14:57 +00:00
..
backwards LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
contrib SOLR-3097, SOLR-3105: add fieldtypes for different languages to the example 2012-02-08 12:07:52 +00:00
core port rev 1241965 to trunk (remove dead code from SearcherManager). 2012-02-08 16:42:19 +00:00
lib LUCENE-3545: Upgrade ASF parent POM, Maven Ant Tasks, and Maven plugins to the most recent versions 2011-10-31 02:46:51 +00:00
site LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
test-framework LUCENE-3753: Clover fixes: Added non-clover-invoking compile-core target specializations to the lucene/test-framework and lucene/tools modules, since these classes have no tests, and lucene/test-framework sources are already included in every other module's clover instrumentation; and moved generate-clover-reports from lucene/common-build.xml to lucene/build.xml, since it doesn't need to be shared elsewhere. 2012-02-08 17:14:57 +00:00
tools LUCENE-3753: Clover fixes: Added non-clover-invoking compile-core target specializations to the lucene/test-framework and lucene/tools modules, since these classes have no tests, and lucene/test-framework sources are already included in every other module's clover instrumentation; and moved generate-clover-reports from lucene/common-build.xml to lucene/build.xml, since it doesn't need to be shared elsewhere. 2012-02-08 17:14:57 +00:00
BUILD.txt LUCENE-3561: Fix maven xxx-src.jar files that were missing resources 2011-11-05 20:02:00 +00:00
CHANGES.txt LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
JRE_VERSION_MIGRATION.txt fix version to match reality 2011-07-28 19:48:54 +00:00
LICENSE.txt
MIGRATE.txt LUCENE-3749: replace SimilarityProvider with PerFieldSimilarityWrapper 2012-02-06 12:48:01 +00:00
NOTICE.txt LUCENE-3653: Improve the sophisticated™ backwards layers (VirtualMethod) and instantiation cost in AttributeSource/AttributeFactory (new reflection cache using ConcurrentHashMap has lockless get) 2011-12-18 17:11:06 +00:00
README.txt be specific about dependent versions for ant/junit 2011-06-23 10:50:21 +00:00
build.xml LUCENE-3753: Clover fixes: Added non-clover-invoking compile-core target specializations to the lucene/test-framework and lucene/tools modules, since these classes have no tests, and lucene/test-framework sources are already included in every other module's clover instrumentation; and moved generate-clover-reports from lucene/common-build.xml to lucene/build.xml, since it doesn't need to be shared elsewhere. 2012-02-08 17:14:57 +00:00
common-build.xml LUCENE-3753: Clover fixes: Added non-clover-invoking compile-core target specializations to the lucene/test-framework and lucene/tools modules, since these classes have no tests, and lucene/test-framework sources are already included in every other module's clover instrumentation; and moved generate-clover-reports from lucene/common-build.xml to lucene/build.xml, since it doesn't need to be shared elsewhere. 2012-02-08 17:14:57 +00:00
index.html

README.txt

Apache Lucene README file

INTRODUCTION

Lucene is a Java full-text search engine.  Lucene is not a complete
application, but rather a code library and API that can easily be used
to add search capabilities to 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 in a binary distribution:

lucene-core-XX.jar
  The compiled Lucene library.

lucene-core-XX-javadoc.jar
  The Javadoc jar for the compiled Lucene library.
  
lucene-test-framework-XX.jar
  The compiled Lucene test-framework library.
  Depends on junit 4.7.x (not 4.6.x, not 4.8.x), and Apache Ant 1.7.x (not 1.6.x, not 1.8.x)

lucene-test-framework-XX-javadoc.jar
  The Javadoc jar for the compiled Lucene test-framework library.

contrib/demo/lucene-demo-XX.jar
  The compiled simple example code.

contrib/*
  Contributed code which extends and enhances Lucene, but is not
  part of the core library.  Of special note are the JAR files in the analyzers directory which
  contain various analyzers that people may find useful in place of the StandardAnalyzer.

docs/index.html
  The contents of the Lucene website.

docs/api/index.html
  The Javadoc Lucene API documentation.  This includes the core library, 
  the test framework, and the demo, as well as all of the contrib modules.