Go to file
Steve Ebersole ac16e825f8 HHH-10128 - @Enumerated(EnumType.STRING) not working as expected with PosgreSQL database 2015-09-28 14:57:47 -05:00
buildSrc HHH-9782 Build plugins pick up JAVA6_HOME as environment variable 2015-05-25 20:05:43 +01:00
databases HHH-9990 - Enabled batched updates for versioned data by default 2015-08-05 11:27:18 +01:00
documentation HHH-10064 - Fix Broken documentation page link in User guide 2015-08-28 16:38:06 +01:00
etc HHH-9803 - Checkstyle fix ups - headers 2015-05-18 23:25:14 -05:00
gradle/wrapper HHH-9738 - Upgrade master (5.0) to Gradle 2.4 2015-05-29 16:03:31 -05:00
hibernate-c3p0 HHH-9990 - Enabled batched updates for versioned data by default 2015-08-05 11:27:18 +01:00
hibernate-core HHH-10128 - @Enumerated(EnumType.STRING) not working as expected with PosgreSQL database 2015-09-28 14:57:47 -05:00
hibernate-ehcache HHH-10108 - Substituted checkstyle NewlineAtEndOfFile rule with rules used in OGM and fixed classes having more than a newline at the end of file 2015-09-22 18:11:43 +01:00
hibernate-entitymanager HHH-10111 - AttributeConverter based attributes are not marked for update when their state is modified 2015-09-24 17:03:53 -05:00
hibernate-envers HHH-10108 - Substituted checkstyle NewlineAtEndOfFile rule with rules used in OGM and fixed classes having more than a newline at the end of file 2015-09-22 18:11:43 +01:00
hibernate-hikaricp HHH-9503 - Consistently accept numeric value or Connection constant field name for configuring transaction isolation 2015-08-04 21:11:18 -05:00
hibernate-infinispan HHH-10101 Implement nonstrict-read-write mode in Infinispan 2LC 2015-09-21 16:33:35 +02:00
hibernate-java8 HHH-10026 - Consider hibernate-java8 types for use with @Version 2015-08-31 13:07:18 -05:00
hibernate-osgi HHH-10044 automatically add hibernate-core and hibernate-entitymanager Bundles to OsgiClassLoader 2015-08-26 15:10:33 -04:00
hibernate-proxool HHH-9990 - Enabled batched updates for versioned data by default 2015-08-05 11:27:18 +01:00
hibernate-spatial HHH-10108 - Substituted checkstyle NewlineAtEndOfFile rule with rules used in OGM and fixed classes having more than a newline at the end of file 2015-09-22 18:11:43 +01:00
hibernate-testing HHH-10115 - HHH90000003: Use of DOM4J entity-mode is considered deprecated 2015-09-22 16:13:45 -05:00
release HHH-10042 - Add task to upload dist bundles to BinTray 2015-08-20 13:14:02 -05:00
shared HHH-10108 - Substituted checkstyle NewlineAtEndOfFile rule with rules used in OGM and fixed classes having more than a newline at the end of file 2015-09-22 18:11:43 +01:00
tooling HHH-10108 - Substituted checkstyle NewlineAtEndOfFile rule with rules used in OGM and fixed classes having more than a newline at the end of file 2015-09-22 18:11:43 +01:00
.gitignore Add NetBeans files to .gitignore 2015-07-17 14:46:31 +02:00
CONTRIBUTING.md CONTRIBUTING.md cleanup 2015-06-26 17:38:35 -04:00
README.md HHH-10088 Add link to setting up guide for Eclipse IDE 2015-09-07 09:05:12 +02:00
build.gradle Changed version in main build.gradle for master branch to 5.1.0-SNAPSHOT 2015-09-03 09:20:30 -05:00
changelog.txt 5.0.0 Final release 2015-08-20 15:36:18 -05:00
gradlew HHH-8141 - Upgrade to Gradle 1.5 2013-04-04 13:01:39 -05:00
gradlew.bat HHH-8141 - Upgrade to Gradle 1.5 2013-04-04 13:01:39 -05:00
hibernate_logo.gif SVN layout migration for core/trunk 2007-06-29 19:24:12 +00:00
lgpl.txt SVN layout migration for core/trunk 2007-06-29 19:24:18 +00:00
libraries.gradle HHH-9959 - Upgrade Hibernate Validator to 5.2.0.Final 2015-07-29 08:56:59 -05:00
migration-guide.adoc HHH-10043 - Migration Guide 2015-08-20 14:29:48 -05:00
settings.gradle HHH-9803 - Checkstyle fix ups - headers 2015-05-18 23:25:14 -05:00
utilities.gradle HHH-9803 - Checkstyle fix ups - headers 2015-05-18 23:25:14 -05:00

README.md

Hibernate ORM is a component/library providing Object/Relational Mapping (ORM) support to applications and other components/libraries. It is also provides an implementation of the JPA specification, which is the standardized Java specification for ORM. See Hibernate.org for additional information.

Build Status

Quickstart

 git clone git://github.com/hibernate/hibernate-orm.git
 cd hibernate-orm
 ./gradlew clean build

The build requires a Java 8 JDK as JAVA_HOME, but will ensure Java 6 compatibility.

Resources

Hibernate uses Gradle as its build tool. See the Gradle Primer section below if you are new to Gradle.

Contributors should read the Contributing Guide

See the guides for setting up IntelliJ or Eclipse as your development environment. Building Hibernate ORM is somewhat outdated, but still has

CI Builds

Hibernate makes use of Jenkins for its CI needs. The project is built continuous on each push to the upstream repository. Overall there are a few different jobs, all of which can be seen at http://ci.hibernate.org/view/ORM/

Gradle primer

This section describes some of the basics developers and contributors new to Gradle might need to know to get productive quickly. The Gradle documentation is very well done; 2 in particular that are indispensable:

  • Gradle User Guide is a typical user guide in that it follows a topical approach to describing all of the capabilities of Gradle.
  • Gradle DSL Guide is quite unique and excellent in quickyl getting up to speed on certain aspects of Gradle.

Using the Gradle Wrapper

For contributors who do not otherwise use Gradle and do not want to install it, Gradle offers a very cool features called the wrapper. It lets you run Gradle builds without a previously installed Gradle distro in a zero-conf manner. Hibernate configures the Gradle wrapper for you. If you would rather use the wrapper and not install Gradle (or to make sure you use the version of Gradle intended for older builds) you would just use the command gradlew (or gradlew.bat) rather than gradle (or gradle.bat) in the following discussions.
Note that gradlew is only available in the project's root dir, so depending on your pwd you may need to adjust the path to gradlew as well.

Executing Tasks

Gradle uses the concept of build tasks (equivalent to Ant targets or Maven phases/goals). You can get a list of available tasks via

gradle tasks

To execute a task across all modules, simply perform that task from the root directory. Gradle will visit each sub-project and execute that task if the sub-project defines it. To execute a task in a specific module you can either:

  1. cd into that module directory and execute the task
  2. name the "task path". For example, in order to run the tests for the hibernate-core module from the root directory you could say gradle hibernate-core:test
  • build - Assembles (jars) and tests this project
  • buildDependents - Assembles and tests this project and all projects that depend on it. So think of running this in hibernate-entitymanager, Gradle would assemble and test hibernate-entitymanager as well as hibernate-envers (because envers depends on entitymanager)
  • classes - Compiles the main classes
  • testClasses - Compiles the test classes
  • compile (Hibernate addition) - Performs all compilation tasks including staging resources from both main and test
  • jar - Generates a jar archive with all the compiled classes
  • test - Runs the tests
  • publish - Think Maven deploy
  • publishToMavenLocal - Installs the project jar to your local maven cache (aka ~/.m2/repository). Note that Gradle never uses this, but it can be useful for testing your build with other local Maven-based builds.
  • eclipse - Generates an Eclipse project
  • idea - Generates an IntelliJ/IDEA project (although the preferred approach is to use IntelliJ's Gradle import).
  • clean - Cleans the build directory