Apache Lucene open-source search software
Go to file
Adrien Grand 90cdd109b1 Add back-compat indices for 9.7.0 2023-06-26 14:14:01 +02:00
.github Generate gradle.properties from gradlew (#12131) 2023-02-06 19:51:03 +01:00
buildSrc Implement MMapDirectory with Java 21 Project Panama Preview API (#12294) 2023-06-12 21:14:36 +02:00
dev-docs Add documentation on file formats. (#598) 2022-01-11 15:16:22 +01:00
dev-tools DOAP changes for release 9.7.0 2023-06-26 11:06:50 +02:00
gradle Implement VectorUtilProvider with Java 21 Project Panama Vector API (#12363) (#12365) 2023-06-13 10:24:30 +01:00
help Generate gradle.properties from gradlew (#12131) 2023-02-06 19:51:03 +01:00
lucene Add back-compat indices for 9.7.0 2023-06-26 14:14:01 +02:00
.asf.yaml titles for github 2021-03-10 12:51:06 +01:00
.dir-locals.el LUCENE-9322: Add Lucene90 codec, including VectorFormat 2020-10-18 07:49:36 -04:00
.git-blame-ignore-revs LUCENE-9570: code reformatting [record rev]. 2021-01-05 13:44:42 +01:00
.gitattributes LUCENE-10305: Ensure line endings of versions.props is LF 2021-12-11 10:12:34 +09:00
.gitignore LUCENE-9920: Remove binary gradle-wrapper.jar from the repository 2021-04-10 16:08:39 +02:00
.hgignore LUCENE-2792: add FST impl 2010-12-12 15:36:08 +00:00
.lift.toml Disable liftbot, we have our own tools 2022-05-05 22:35:20 +02:00
LICENSE.txt LUCENE-10163 Move LICENSE and NOTICE file to top level (#388) 2021-10-18 01:24:11 +02:00
NOTICE.txt Cleanup NOTICE.txt (#12227) 2023-04-18 16:00:01 -04:00
README.md Improve MIGRATE.md around analyzers artifacts. (#488) 2021-11-29 17:44:26 -05:00
build.gradle Add next bugfix version 9.7.1 2023-06-26 14:05:06 +02:00
gradlew Generate gradle.properties from gradlew (#12131) 2023-02-06 19:51:03 +01:00
gradlew.bat Generate gradle.properties from gradlew (#12131) 2023-02-06 19:51:03 +01:00
settings.gradle GH-11172: remove WindowsDirectory and native subproject. (#11774) 2022-09-15 16:23:57 +02:00
versions.lock Upgrade ANTLR to version 4.11.1 (#12016) 2022-12-15 22:54:54 -05:00
versions.props Upgrade to errorprone 2.18 (#12086) 2023-01-14 14:39:59 -05:00

README.md

Apache Lucene

Lucene Logo

Apache Lucene is a high-performance, full-featured text search engine library written in Java.

Build Status

Online Documentation

This README file only contains basic setup instructions. For more comprehensive documentation, visit:

Building with Gradle

Basic steps:

  1. Install OpenJDK 11 (or greater).
  2. Clone Lucene's git repository (or download the source distribution).
  3. Run gradle launcher script (gradlew).

Step 0) Set up your development environment (OpenJDK 11 or greater)

We'll assume that you know how to get and set up the JDK - if you don't, then we suggest starting at https://jdk.java.net/ and learning more about Java, before returning to this README. Lucene runs with Java 11 or later.

Lucene uses Gradle for build control. Gradle is itself Java-based and may be incompatible with newer Java versions; you can still build and test Lucene with these Java releases, see jvms.txt for more information.

NOTE: Lucene changed from Apache Ant to Gradle as of release 9.0. Prior releases still use Apache Ant.

Step 1) Checkout/Download Lucene source code

You can clone the source code from GitHub:

https://github.com/apache/lucene

or get Lucene source archives for a particular release from:

https://lucene.apache.org/core/downloads.html

Download the source archive and uncompress it into a directory of your choice.

Step 2) Run Gradle

Run "./gradlew help", this will show the main tasks that can be executed to show help sub-topics.

If you want to build Lucene, type:

./gradlew assemble

NOTE: DO NOT use the gradle command that is perhaps installed on your machine. This may result in using a different gradle version than the project requires and this is known to lead to very cryptic errors. The "gradle wrapper" (gradlew script) does everything required to build the project from scratch: it downloads the correct version of gradle, sets up sane local configurations and is tested on multiple environments.

The first time you run gradlew, it will create a file "gradle.properties" that contains machine-specific settings. Normally you can use this file as-is, but it can be modified if necessary.

./gradlew check will assemble Lucene and run all validation tasks (including tests).

./gradlew help will print a list of help guides that introduce and explain various parts of the build system, including typical workflow tasks.

If you want to just build the documentation, type:

./gradlew documentation

IDE support

  • IntelliJ - IntelliJ idea can import and build gradle-based projects out of the box.
  • Eclipse - Basic support (help/IDEs.txt).
  • Netbeans - Not tested.

Contributing

Bug fixes, improvements and new features are always welcome! Please review the Contributing to Lucene Guide for information on contributing.

Discussion and Support