From 53726612ee25e193d663121ac3ec1a5dae4ca47b Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Tue, 4 Dec 2012 18:25:47 +0100 Subject: [PATCH] spring-orm should not build against cglib-repack The previous commit by Juergen Hoeller upgraded spring-orm's Hibernate 3 dependency to 3.3.2.GA, and this commit removes the now unnecessary dependency on org.hibernate:hibernate-cglib-repack:2.1_3. Issue: SPR-10066 --- build.gradle | 3 --- 1 file changed, 3 deletions(-) diff --git a/build.gradle b/build.gradle index 4f8a468610..949660fcde 100644 --- a/build.gradle +++ b/build.gradle @@ -414,11 +414,8 @@ project('spring-web') { project('spring-orm') { description = 'Spring Object/Relational Mapping' dependencies { - // compiling against both hibernate 3 and 4 here in order to support - // our respective orm.hibernate3 and orm.hibernate4 packages compile("aopalliance:aopalliance:1.0") compile("org.hibernate:hibernate-core:3.3.2.GA", 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:3.4.0.GA", optional) compile("org.apache.openjpa:openjpa:1.1.0", optional)