Search

Downloads

Hibernate Search releases are consumable in 2 different formats:

Distribution bundle

Distribution bundles are hosted on SourceForge File Release System. They come as both ZIP and TGZ archives. They contain jars, documentation, source code, etc.

Maven repository artifacts

Hibernate Search is built using Maven and publishes as part of the release process the project artifacts to the JBoss Maven Repository under org.hibernate:hibernate-search. For more information on how to configure Maven to use JBoss's repository, see this page.

To include the latest release of Hibernate Search into your Maven project add the one of following dependencies:

Latest stable release
<dependency>
     <groupId>org.hibernate</groupId>
     <artifactId>hibernate-search</artifactId>
     <version>4.2.0.Final</version>
</dependency>
	
Latest development release
<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-search</artifactId>
    <version>4.3.0.Beta1</version>
</dependency>