From cc347a4e05ccd54b3cbff0eff5d9187042bfa675 Mon Sep 17 00:00:00 2001 From: Imran M Yousuf Date: Thu, 9 Apr 2009 12:31:54 +0600 Subject: [PATCH] Fix dependency of hibernate implementation of abstract dao It was previously using the complete spring artifact, which is much more than what is required, thus we broke it down to smaller artifacts to reduce size Signed-off-by: Imran M Yousuf --- smart-hibernate-abstract-dao/pom.xml | 48 +++++++++++++++++++++++++++++------- 1 file changed, 39 insertions(+), 9 deletions(-) diff --git a/smart-hibernate-abstract-dao/pom.xml b/smart-hibernate-abstract-dao/pom.xml index 66bd7fd..f1bd9b3 100644 --- a/smart-hibernate-abstract-dao/pom.xml +++ b/smart-hibernate-abstract-dao/pom.xml @@ -78,20 +78,23 @@ ${project.version} - com.smartitengineering.smart-util - smart-bean-util - ${smart-util.version} - test + org.springframework + spring-hibernate3 + ${spring.hibernate.version} - junit - junit - ${junit.version} - test + org.springframework + spring-dao + ${spring.hibernate.version} org.springframework - spring + spring-core + ${spring.version} + + + org.springframework + spring-jdbc ${spring.version} @@ -100,6 +103,33 @@ ${hibernate.version} + org.springframework + spring-beans + ${spring.version} + + + org.springframework + spring-orm + ${spring.version} + + + org.springframework + spring-context + ${spring.version} + + + com.smartitengineering.smart-util + smart-bean-util + ${smart-util.version} + test + + + junit + junit + ${junit.version} + test + + c3p0 c3p0 ${c3p0.version} -- 2.11.4.GIT