You are viewing a plain text version of this content. The canonical link for it is here.
Posted to s4-commits@incubator.apache.org by le...@apache.org on 2012/02/04 20:15:14 UTC

git commit: Exclude transient dependencies to make the build script work with Gradle 1.0 M7.

Updated Branches:
  refs/heads/piper b54087209 -> 2aa2cb236


Exclude transient dependencies to make the build script work with Gradle 1.0 M7.


Project: http://git-wip-us.apache.org/repos/asf/incubator-s4/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s4/commit/2aa2cb23
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s4/tree/2aa2cb23
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s4/diff/2aa2cb23

Branch: refs/heads/piper
Commit: 2aa2cb236e4c10afb57dc81d59fe5573c6ac4386
Parents: b540872
Author: Leo Neumeyer <le...@apache.org>
Authored: Sat Feb 4 12:14:37 2012 -0800
Committer: Leo Neumeyer <le...@apache.org>
Committed: Sat Feb 4 12:14:37 2012 -0800

----------------------------------------------------------------------
 build.gradle |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/2aa2cb23/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index acf40f7..6d2737b 100644
--- a/build.gradle
+++ b/build.gradle
@@ -87,7 +87,14 @@ subprojects {
 
     checkstyleConfigFileName = "$rootDir/config/checkstyle/s4-checkstyle.xml"
     
-
+    // The jmx points to a repo that is no longer available. We exclude these dependencies. 
+    configurations {
+        all*.exclude group: 'com.sun.jmx'
+        all*.exclude group: 'com.sun.jdmk'
+        all*.exclude group: 'javax.jms'
+        all*.exclude group: 'javax.mail'
+    }
+    
     dependencies {
         
         /* Google. */
@@ -107,7 +114,7 @@ subprojects {
         /* Misc. */
         compile( libraries.jcip )
         compile( libraries.zk )
-        
+             
         /* Testing. */
         testCompile( libraries.junit )
     }