Red Hat

Hibernate OGM downloads

Hibernate OGM downloads

Interested in commercial support? Check out Red Hat’s offering.

Releases

4.0.0.Beta4  
2013-10-25 development
Maven gav: org.hibernate.ogm:hibernate-ogm-*:4.0.0.Beta4
Initial Neo4j integration; support for store-specific native queries
More on this release
Older releases can be found on SourceForge or in JBoss's Maven repository.

Maven repository

Hibernate OGM is built using Maven and publishes as part of the release process the project artifacts to the JBoss Maven Repository under org.hibernate.ogm:hibernate-ogm-*. For more information on how to configure Maven to use JBoss’s repository, look here or use mvn install -s setting-example.xml.

Hibernate OGM comprises a core module (org.hibernate.ogm:hibernate-ogm-core) and several datastore-specific modules, each containing a store-specific grid dialect implementation. These modules have artifact ids in the form of hibernate-ogm-*, where * is a store-specific identifier such as infinispan or mongodb.

So if your are for instance working with MongoDB, add the following dependency to your Maven POM file:

<dependency>
    <groupId>org.hibernate.ogm</groupId>
    <artifactId>hibernate-ogm-mongodb</artifactId>
    <version>4.0.0.Beta4</version>
</dependency>

This will transitively pull in the Hibernate OGM core module and all other required dependencies.

back to top