2001-11-04 12:23:04 -05:00
|
|
|
Lucene Build Instructions
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
Basic steps:
|
2004-04-03 16:32:50 -05:00
|
|
|
0) Install JDK 1.2 (or greater), Ant 1.6 (or greater), and the Ant
|
2003-01-25 23:38:44 -05:00
|
|
|
optional.jar
|
|
|
|
1) Download Lucene from Apache and unpack it
|
|
|
|
2) Connect to the top-level of your Lucene installation
|
2003-09-10 21:51:33 -04:00
|
|
|
3) Install JavaCC (optional)
|
2003-01-25 23:38:44 -05:00
|
|
|
4) Run ant
|
2001-11-04 12:23:04 -05:00
|
|
|
|
2003-01-25 23:38:44 -05:00
|
|
|
Step 0) Set up your development environment (JDK 1.2 or greater,
|
2004-04-03 16:32:50 -05:00
|
|
|
Ant 1.6 or greater)
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
We'll assume that you know how to get and set up the JDK - if you
|
|
|
|
don't, then we suggest starting at http://java.sun.com and learning
|
|
|
|
more about Java, before returning to this README.
|
|
|
|
|
2003-01-25 23:38:44 -05:00
|
|
|
Lucene runs with JDK 1.2 and later. However, if you're going to work
|
2001-11-04 12:23:04 -05:00
|
|
|
with the development version of Lucene, we recommend you stick with
|
|
|
|
the most current version of Java (at the time of this writing, JDK
|
2002-05-06 23:38:34 -04:00
|
|
|
1.4). Also, note that if you're working with the Lucene source,
|
2004-04-03 16:32:50 -05:00
|
|
|
you'll need to use Ant (see below) and Ant requires at least JDK 1.2.
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
Like most of the Jakarta projects, Lucene uses Apache Ant for build
|
2004-04-03 16:32:50 -05:00
|
|
|
control. Specifically, you MUST use Ant version 1.6 or greater.
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
Ant is "kind of like make without make's wrinkles". Ant is
|
|
|
|
implemented in java and uses XML-based configuration files. You can
|
|
|
|
get it at:
|
|
|
|
|
2003-09-10 21:51:33 -04:00
|
|
|
http://ant.apache.org
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
You'll need to download both the Ant binary distribution and the
|
|
|
|
"optional" jar file. Install these according to the instructions at:
|
|
|
|
|
2003-09-10 21:51:33 -04:00
|
|
|
http://ant.apache.org/manual
|
2001-11-04 12:23:04 -05:00
|
|
|
|
2002-05-06 23:38:34 -04:00
|
|
|
Step 1) Download Lucene from Apache
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
We'll assume you already did this, or you wouldn't be reading this
|
|
|
|
file. However, you might have received this file by some alternate
|
|
|
|
route, or you might have an incomplete copy of the Lucene, so: Lucene
|
|
|
|
releases are available for download at:
|
|
|
|
|
|
|
|
http://jakarta.apache.org/builds/jakarta-lucene/release/
|
|
|
|
|
|
|
|
Download either a zip or a tarred/gzipped version of the archive, and
|
|
|
|
uncompress it into a directory of your choice.
|
|
|
|
|
2002-01-26 10:01:32 -05:00
|
|
|
Step 2) Connect to the top-level of your Lucene installation
|
2001-11-04 12:23:04 -05:00
|
|
|
|
2002-02-27 17:18:28 -05:00
|
|
|
Lucene's top-level directory contains the default.properties and
|
|
|
|
build.xml files. By default, you do not need to change any of the
|
|
|
|
settings in these files, but you do need to run ant from this location
|
|
|
|
so it knows where to find them.
|
|
|
|
|
|
|
|
If you would like to change the settings in the default.properties there
|
|
|
|
is no need to edit the default.properties file, you can override the
|
|
|
|
property settings by creating one or more of the following files and
|
|
|
|
placing your own property settings in there:
|
|
|
|
|
|
|
|
~/lucene.build.properties
|
|
|
|
~/build.properties
|
|
|
|
jakarta-lucene/build.properties
|
|
|
|
|
|
|
|
The first property which is found in the order with which the files are
|
|
|
|
loaded becomes the property setting which is used by the Ant build
|
|
|
|
system.
|
|
|
|
|
|
|
|
NOTE: the ~ character represents your user account home directory.
|
2001-11-04 12:23:04 -05:00
|
|
|
|
2003-01-25 23:38:44 -05:00
|
|
|
Step 3) Install JavaCC
|
|
|
|
|
2003-09-10 21:51:33 -04:00
|
|
|
Building the Lucene distribution from the source does not require the JavaCC
|
|
|
|
parser generator, but if you wish to regenerate any of the pre-generated
|
|
|
|
parser pieces, you will need to install JavaCC.
|
2003-01-25 23:38:44 -05:00
|
|
|
|
2003-09-10 21:51:33 -04:00
|
|
|
http://javacc.dev.java.net
|
2003-01-25 23:38:44 -05:00
|
|
|
|
|
|
|
Follow the download links and download the zip file to a temporary
|
2003-09-10 21:51:33 -04:00
|
|
|
location on your file system.
|
2003-01-25 23:38:44 -05:00
|
|
|
|
2003-09-10 21:51:33 -04:00
|
|
|
After JavaCC is installed, edit your build.properties
|
2003-01-25 23:38:44 -05:00
|
|
|
(as in step 2), and add the line
|
|
|
|
|
|
|
|
javacc.home=/javacc/bin
|
|
|
|
|
|
|
|
where this points to the bin directory of your javacc installation.
|
|
|
|
|
|
|
|
Step 4) Run ant
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
Assuming you have ant in your PATH and have set ANT_HOME to the
|
|
|
|
location of your ant installation, typing "ant" at the shell prompt
|
|
|
|
and command prompt should run ant. Ant will by default look for the
|
|
|
|
"build.xml" file in your current directory, and compile Lucene.
|
|
|
|
|
2003-09-10 21:51:33 -04:00
|
|
|
To rebuild any of the JavaCC-based parsers, run "ant javacc".
|
|
|
|
|
2001-11-04 12:23:04 -05:00
|
|
|
For further information on Lucene, go to:
|
2002-02-27 17:18:28 -05:00
|
|
|
http://jakarta.apache.org/lucene/
|
2001-11-04 12:23:04 -05:00
|
|
|
|
2002-02-27 17:18:28 -05:00
|
|
|
Please join the Lucene-User mailing list by visiting this site:
|
|
|
|
http://jakarta.apache.org/site/mail.html
|
2003-09-10 21:51:33 -04:00
|
|
|
|
2001-11-04 12:23:04 -05:00
|
|
|
Please post suggestions, questions, corrections or additions to this
|
2003-09-10 21:51:33 -04:00
|
|
|
document to the lucene-user mailing list.
|
2001-11-04 12:23:04 -05:00
|
|
|
|
|
|
|
This file was originally written by Steven J. Owens <puff@darksleep.com>.
|
2002-02-27 17:18:28 -05:00
|
|
|
This file was modified by Jon S. Stevens <jon@latchkey.com>.
|
2001-11-04 12:23:04 -05:00
|
|
|
|
2004-04-03 16:32:50 -05:00
|
|
|
Copyright (c) 2001-2004 The Apache Software Foundation. All rights reserved.
|