From d1aef40dcb687c0c2526540396d88119d696abc4 Mon Sep 17 00:00:00 2001 From: Strong Liu Date: Thu, 10 Oct 2013 00:28:19 +0800 Subject: [PATCH] HHH-8601 remove commons-logging and upgrade slf4j --- build.gradle | 3 --- libraries.gradle | 8 ++------ 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/build.gradle b/build.gradle index 3fc885dda1..b92ecd9b32 100644 --- a/build.gradle +++ b/build.gradle @@ -126,9 +126,6 @@ subprojects { subProject -> testRuntime( libraries.slf4j_api ) testRuntime( libraries.slf4j_log4j12 ) - testRuntime( libraries.jcl_slf4j ) - testRuntime( libraries.jcl_api ) - testRuntime( libraries.jcl ) testRuntime( libraries.javassist ) testRuntime( libraries.h2 ) diff --git a/libraries.gradle b/libraries.gradle index 7547965718..65859d7581 100644 --- a/libraries.gradle +++ b/libraries.gradle @@ -27,8 +27,8 @@ // use. In that respect it serves a role similar to in Maven ext { - slf4jVersion = '1.6.1' - junitVersion = '4.10' + slf4jVersion = '1.7.5' + junitVersion = '4.11' h2Version = '1.2.145' bytemanVersion = '2.1.2' infinispanVersion = '5.3.0.Final' @@ -82,10 +82,6 @@ ext { // logging for testing slf4j_api: "org.slf4j:slf4j-api:${slf4jVersion}", slf4j_log4j12: "org.slf4j:slf4j-log4j12:${slf4jVersion}", - jcl_slf4j: "org.slf4j:jcl-over-slf4j:${slf4jVersion}", - jcl_api: 'commons-logging:commons-logging-api:99.0-does-not-exist', - jcl: 'commons-logging:commons-logging:99.0-does-not-exist', - junit: "junit:junit:${junitVersion}", byteman: "org.jboss.byteman:byteman:${bytemanVersion}",