Go to file
Andrea Boriero cdb11f9be2 HHH-10695 - Fix MySQL should not use the NCLOB type
(cherry picked from commit 455d86307b)
2016-08-09 16:29:41 -07:00
buildSrc HHH-10812 Adding module ZIP and integration test for using Hibernate ORM 5.1 on WildFly 10 2016-06-28 11:47:36 +01:00
databases Move access credentials for Oracle testing database to environment variables 2016-01-17 23:52:40 +00:00
documentation HHH-10896 : Corrections for backporting. 2016-08-01 23:12:35 -07:00
etc Cherry pick spelling corrections from https://github.com/hibernate/hibernate-orm/pull/1238 2016-01-25 11:36:25 +02:00
gradle/wrapper HHH-10438 - Upgrade the Gradle wrapper to use Gradle version 2.10 2016-01-25 10:08:54 -06:00
hibernate-c3p0 Change hibernate.properties to take configurable environment settings 2016-03-16 09:30:29 +02:00
hibernate-core HHH-10695 - Fix MySQL should not use the NCLOB type 2016-08-09 16:29:41 -07:00
hibernate-ehcache HHH-10773 - Add a toString() implementation to the READ_WRITE Ehcache Item object 2016-05-26 11:01:51 +03:00
hibernate-entitymanager HHH-10968 - Test cases. 2016-07-25 21:59:40 -05:00
hibernate-envers HHH-8305 - Fix ToOne join tables with optional=true and OneToOne inverse mappings. 2016-06-15 15:35:46 -05:00
hibernate-hikaricp Change hibernate.properties to take configurable environment settings 2016-03-16 09:30:29 +02:00
hibernate-infinispan HHH-10287 - Made necessary changes to backport 2016-06-07 12:00:43 -07:00
hibernate-java8 HHH-10691 - Fix tests failing when switching to PostgreSQL 2016-05-13 15:29:04 +01:00
hibernate-orm-modules HHH-10812 Adapting classifier to resemble pattern known from HSEARCH 2016-06-29 21:49:01 +02:00
hibernate-osgi HHH-10432 - hibernate 5.0.6 does not work with Aries JPA 2.3.0 2016-01-12 15:52:57 -06:00
hibernate-proxool Change hibernate.properties to take configurable environment settings 2016-03-16 09:30:29 +02:00
hibernate-spatial HH-10987 - Update geolatte-geom to 1.0.4 2016-07-29 18:12:26 +02:00
hibernate-testing HHH-10977 - Fix enhanced classloader so that the testsuite behaves as the enhancement plugins do 2016-07-21 22:26:45 -07:00
release HHH-10520 - Update doc publishing 2016-02-11 15:59:13 -06: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-10801 - Bytecode enhancement of @MappedSuperclass 2016-07-01 13:37:22 -07:00
.gitignore HHH-9676 - TypeSafeActivator.applyDDL doesn't process composing constraints when @NotNull is present 2016-05-31 09:15:09 +03:00
CONTRIBUTING.md update user guide url 2016-01-25 11:40:42 +02:00
README.md update user guide url 2016-01-25 11:40:42 +02:00
build.gradle Add Oracle and SQL Server dependencies based on the supplied db property 2016-06-02 09:54:24 +03:00
changelog.txt 5.1.0 release (prep) 2016-02-10 11:20:33 -06:00
databases.gradle HHH-10695 - Fix MySQL should not use the NCLOB type 2016-08-09 16:29:41 -07:00
gradlew HHH-10438 - Upgrade the Gradle wrapper to use Gradle version 2.10 2016-01-24 20:10:56 -06: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-10812 Adding module ZIP and integration test for using Hibernate ORM 5.1 on WildFly 10 2016-06-28 11:47:36 +01:00
migration-guide.adoc 5.1 migration guide 2016-02-09 22:44:05 -06:00
settings.gradle HHH-10812 Adding module ZIP and integration test for using Hibernate ORM 5.1 on WildFly 10 2016-06-28 11:47:36 +01: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 quickly 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