From 93cb86cd52adad8d48e95d1a98d78adae3241766 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Fri, 26 Oct 2012 12:52:25 +0200 Subject: [PATCH] Fix dependency setup. Unify test dependencies in parent pom.xml. Fixed logging dependencies to only depend on SLF4j API now (in version 1.7.1). Using Logback as test runtime loggin dependency. Fixed Hamcrest/JUnit setup. --- core/pom.xml | 7 +++++++ pom.xml | 48 ++++++++++++++++++++++++++++++++++++------------ 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index 1cafd94..9353c15 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -18,7 +18,14 @@ org.springframework spring-beans ${spring.version} + + + commons-logging + commons-logging + + + org.springframework spring-context diff --git a/pom.xml b/pom.xml index 37eefb8..39d567b 100644 --- a/pom.xml +++ b/pom.xml @@ -45,6 +45,7 @@ 3.1.2.RELEASE + 1.7.1 @@ -63,24 +64,47 @@ + + + + org.hamcrest + hamcrest-library + 1.3 + test + junit - junit + junit-dep 4.10 test + + + org.mockito + mockito-all + 1.9.5 + test + + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + - log4j - log4j - 1.2.16 - test - - - org.mockito - mockito-all - 1.9.5 - test - + ch.qos.logback + logback-classic + 1.0.7 + test + +