lucene/lucene
Robert Muir 815cc4f10e LUCENE-3989: junit4 taskdef installation has wrong dependencies
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1326376 13f79535-47bb-0310-9956-ffa450edef68
2012-04-15 16:53:34 +00:00
..
backwards LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
contrib LUCENE-3808: Switch LuceneTestCaseRunner to RandomizedRunner. Enforce Random sharing contracts. Enforce thread leaks. 2012-04-15 14:41:44 +00:00
core LUCENE-3808: Switch LuceneTestCaseRunner to RandomizedRunner. Enforce Random sharing contracts. Enforce thread leaks. 2012-04-15 14:41:44 +00:00
site LUCENE-3753: Restructure the Lucene build system 2012-02-07 19:59:05 +00:00
test-framework Fixing Eclipse .classpath and adding license headers. 2012-04-15 16:00:38 +00:00
tools LUCENE-3808: Switch LuceneTestCaseRunner to RandomizedRunner. Enforce Random sharing contracts. Enforce thread leaks. 2012-04-15 14:41:44 +00:00
BUILD.txt fix URLs in docs to not rely on redirects 2012-04-03 16:31:09 +00:00
CHANGES.txt LUCENE-3970: rename getUniqueTerm/FieldCount() to size() 2012-04-10 23:21:39 +00:00
JRE_VERSION_MIGRATION.txt fix version to match reality 2011-07-28 19:48:54 +00: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-2621: add description of new term vectors API 2012-03-23 17:23:50 +00:00
NOTICE.txt unconfuse NOTICE.txt files (jar locations etc) 2012-04-04 20:49:14 +00:00
README.txt LUCENE-3762: update README to indicate junit 4.10.x 2012-02-18 17:58:10 +00:00
build.xml LUCENE-3989: junit4 taskdef installation has wrong dependencies 2012-04-15 16:53:34 +00:00
common-build.xml LUCENE-3989: junit4 taskdef installation has wrong dependencies 2012-04-15 16:53:34 +00:00
index.html SVN-GIT conversion, path copy emulation. 2016-01-23 01:18:53 +01:00
module-build.xml LUCENE-3965: contrib-build -> modules-build (project-name) 2012-04-15 13:30:20 +00: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.10.x (not 4.9.x, not 4.11.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.