lucene/lucene
Michael McCandless 50be8c0489 remove confusing dead code
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1147671 13f79535-47bb-0310-9956-ffa450edef68
2011-07-17 16:09:02 +00:00
..
backwards update backwards instructions 2011-06-12 11:43:18 +00:00
contrib LUCENE-3283: Fixed building of queryparser module dependency: the jar was being built in lucene/contrib/memory/build/ instead of in lucene/modules/queryparser/build/ 2011-07-16 17:34:56 +00:00
lib LUCENE-3204: Added NOTICE file for maven-ant-tasks jar 2011-06-14 21:47:30 +00:00
src remove confusing dead code 2011-07-17 16:09:02 +00:00
BUILD.txt be specific about dependent versions for ant/junit 2011-06-23 10:50:21 +00:00
CHANGES.txt sync CHANGES.txt 2011-07-17 11:10:57 +00:00
JRE_VERSION_MIGRATION.txt SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00
LICENSE.txt LUCENE-2449: add 'knob' (-Drandom.multiplier=N, defaults to 1) to tune up how much random testing is done; fix sneaky bugs (workaround java's bug in new String(int[], int, int); nasty key reuse bug in DBLRUCache) that this deeper testing uncovered 2010-05-10 07:47:12 +00:00
MIGRATE.txt LUCENE-3299: refactoring of Similarity.sloppyFreq and scorePayload 2011-07-12 21:37:19 +00:00
NOTICE.txt add junit, jline to NOTICE.txt 2011-03-06 20:33:04 +00:00
README.txt be specific about dependent versions for ant/junit 2011-06-23 10:50:21 +00:00
build.xml LUCENE-3285: Moved flexible queryparser to queryparser module 2011-07-14 02:56:54 +00:00
common-build.xml SOLR-2452: fix m2-deploy-with-pom-template POM rewriting - the copy task was not overwriting, so only the first POM in each module was being used, resulting in no more than one external jar per module being created by generate-maven-artifacts, because the POM was the same for each. 2011-07-11 01:11:24 +00:00
index.html SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00

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.