2001-11-04 12:23:04 -05:00
|
|
|
Lucene Build Instructions
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
Basic steps:
|
2002-02-27 17:18:28 -05:00
|
|
|
0) Install JDK 1.2 (or greater), Ant 1.4 (or greater), and the Ant
|
|
|
|
optional.jar.
|
2001-11-04 12:23:04 -05:00
|
|
|
1) Download Lucene from Apache and unpack it.
|
|
|
|
2) Connect to the top-level of your Lucene installation.
|
|
|
|
3) Run ant.
|
|
|
|
|
2002-05-06 23:38:34 -04:00
|
|
|
Step 0) Set up your development environment (JDK 1.3/1.4, Ant 1.4)
|
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.
|
|
|
|
|
|
|
|
Lucene runs with JDK 1.1 and later. However, if you're going to work
|
|
|
|
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,
|
2001-11-04 12:23:04 -05:00
|
|
|
you'll need to use Ant (see below) and Ant requires at least JDK 1.1
|
|
|
|
(and in the future will likely move to requiring JDK 1.2, according to
|
|
|
|
the Ant install docs).
|
|
|
|
|
|
|
|
Like most of the Jakarta projects, Lucene uses Apache Ant for build
|
|
|
|
control. Specifically, you MUST use Ant version 1.4 or greater.
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
http://jakarta.apache.org/ant/index.html
|
|
|
|
|
|
|
|
Specifically, you can get the binary distributions at:
|
|
|
|
|
|
|
|
http://jakarta.apache.org/builds/jakarta-ant/release/
|
|
|
|
|
|
|
|
You'll need to download both the Ant binary distribution and the
|
|
|
|
"optional" jar file. Install these according to the instructions at:
|
|
|
|
|
|
|
|
http://jakarta.apache.org/ant/manual/index.html
|
|
|
|
|
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
|
|
|
|
2002-01-26 10:01:32 -05:00
|
|
|
Step 3) 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.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2001-11-04 12:23:04 -05:00
|
|
|
Please post suggestions, questions, corrections or additions to this
|
2002-02-27 17:18:28 -05: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
|
|
|
|
2002-02-27 17:18:28 -05:00
|
|
|
Copyright (c) 2001-2002 The Apache Software Foundation. All rights reserved.
|