From 43dc1b648830eed9648569899308871c83174ea3 Mon Sep 17 00:00:00 2001 From: Dikang Gu Date: Tue, 9 Aug 2011 17:41:13 +0800 Subject: [PATCH] fix the break of ./gredlew allImage on Mac. --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 8c9cb61..3a02e88 100644 --- a/build.gradle +++ b/build.gradle @@ -107,7 +107,9 @@ subprojects { /* Common dependencies applied to all subprojects. */ dependencies { - compile( libraries.log4j ) + compile( libraries.log4j ) { + exclude group:'com.sun.jmx', module:'jmxri' + } compile( libraries.commons_logging ) compile( libraries.spring ) testCompile( libraries.junit )