mirror of https://github.com/apache/lucene.git
de7ab5b898
This change involves: * Adding Tomcat's Servlet jar into the lib directory and appropriate entry in NOTICE.txt following the lead from Solr's packaging * Adding new "demo" directory to XmlQueryParser src directory * Changing XMLQueryParser's build file to create a demo War file * Changing the main build to include the demo War file (and any other future contrib/*/war files) in the binary distributions The packaged source distribution has NOT been changed currently to add a lib directory with the servlet.jar so building from a cut-down src distro as opposed to the full subversion /trunk directory will not currently build the war file (the xml query parser build file detects the absence of servlet.jar). Not sure if this is a problem currently. TODO: Now that the servlet jar is available in Subversion I would recommend that the other existing WAR file,"luceneweb.war", is changed to move much of the java code which is currently embedded in JSP files into servlet .java files. This would ensure that the build system will check that the code in this application compiles cleanly with the latest Lucene APIs - otherwise any issue will only become apparent when a user tries to run a JSP. git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@712318 13f79535-47bb-0310-9956-ffa450edef68 |
||
---|---|---|
contrib | ||
docs | ||
lib | ||
src | ||
.cvsignore | ||
BUILD.txt | ||
CHANGES.txt | ||
LICENSE.txt | ||
NOTICE.txt | ||
README.txt | ||
build.xml | ||
common-build.xml | ||
index.html | ||
lucene-contrib-pom.xml.template | ||
lucene-core-pom.xml.template | ||
lucene-demos-pom.xml.template | ||
lucene-parent-pom.xml.template |
README.txt
Lucene README file $Id$ 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 lucene-core-XX.jar The compiled lucene library. lucene-demos-XX.jar The compiled simple example code. luceneweb.war The compiled simple example Web Application. 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 and snowball 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 demo, as well as all of the contrib modules. src/java The Lucene source code. src/demo Some example code.