From 3eff36452908c06774eb4e40e4943cb794674c05 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Thu, 9 Feb 2012 11:45:05 +0100 Subject: [PATCH] Upgrade Hibernate from 4.0.0.CR7=>4.1.0.Final spring-orm now successfully builds against hibernate-core and hibernate-entitymanager 4.1.0.Final Issue: SPR-9082 --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index dc3381aa283..c8a3a8bb89b 100644 --- a/build.gradle +++ b/build.gradle @@ -337,10 +337,10 @@ project('spring-orm') { // compiling against both hibernate 3 and 4 here in order to support // our respective orm.hibernate3 and orm.hibernate4 packages compile("org.hibernate:com.springsource.org.hibernate:3.3.1.GA", optional) - compile("org.hibernate:hibernate-core:4.0.0.CR7", optional) + compile("org.hibernate:hibernate-core:4.1.0.Final", optional) compile("org.hibernate:hibernate-cglib-repack:2.1_3", optional) compile("org.hibernate:hibernate-annotations:3.4.0.GA", optional) - compile("org.hibernate:hibernate-entitymanager:4.0.0.CR4", optional) + compile("org.hibernate:hibernate-entitymanager:4.1.0.Final", optional) compile("org.apache.openjpa:openjpa:1.1.0", optional) compile("org.eclipse.persistence:org.eclipse.persistence.core:1.0.1", optional) compile("org.eclipse.persistence:org.eclipse.persistence.jpa:1.0.1", optional) @@ -465,7 +465,7 @@ configure(rootProject) { dependencies { // for integration tests testCompile project(":spring-test") testCompile project(":spring-webmvc-portlet") - testCompile "org.hibernate:hibernate-core:4.0.0.CR7" + testCompile "org.hibernate:hibernate-core:4.1.0.Final" testCompile "javax.servlet:servlet-api:2.5" }