From 35ad18839e249d216a40a32d5ed91c73d595ff13 Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Mon, 18 Feb 2013 19:27:12 +0100 Subject: [PATCH] #53 - Set up Slf4j logging and excluded Commons Logging. --- pom.xml | 28 ++++++++++++++++++++++++++++ src/test/resources/logback.xml | 16 ++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 src/test/resources/logback.xml diff --git a/pom.xml b/pom.xml index f795433e..2b4e124d 100644 --- a/pom.xml +++ b/pom.xml @@ -59,11 +59,13 @@ UTF-8 3.1.2.RELEASE + 1.0.9 1.9.10 2.1.1 1.0 0.8.1 1.1.1 + 1.7.2 true @@ -72,6 +74,12 @@ org.springframework spring-core ${spring.version} + + + commons-logging + commons-logging + + @@ -143,6 +151,26 @@ true + + org.slf4j + slf4j-api + ${slf4j.version} + + + + org.slf4j + jcl-over-slf4j + ${slf4j.version} + test + + + + ch.qos.logback + logback-classic + ${logback.version} + test + + org.hamcrest hamcrest-library diff --git a/src/test/resources/logback.xml b/src/test/resources/logback.xml new file mode 100644 index 00000000..ef0ecf20 --- /dev/null +++ b/src/test/resources/logback.xml @@ -0,0 +1,16 @@ + + + + + + %d %5p %40.40c:%4L - %m%n + + + + + + + + + + \ No newline at end of file