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 mm...@apache.org on 2013/03/12 11:33:50 UTC

git commit: Add proper dependency exclusions for custom modules

Updated Branches:
  refs/heads/dev 5f4b5da87 -> 4edffbf9a


Add proper dependency exclusions for custom modules


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

Branch: refs/heads/dev
Commit: 4edffbf9aaf63ef4b7aee8c66c21345cedde37aa
Parents: 5f4b5da
Author: Matthieu Morel <mm...@apache.org>
Authored: Tue Mar 12 12:03:49 2013 +0100
Committer: Matthieu Morel <mm...@apache.org>
Committed: Tue Mar 12 12:03:49 2013 +0100

----------------------------------------------------------------------
 test-apps/custom-modules/build.gradle |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/4edffbf9/test-apps/custom-modules/build.gradle
----------------------------------------------------------------------
diff --git a/test-apps/custom-modules/build.gradle b/test-apps/custom-modules/build.gradle
index 607a7ff..b75015a 100644
--- a/test-apps/custom-modules/build.gradle
+++ b/test-apps/custom-modules/build.gradle
@@ -77,10 +77,15 @@ dependencies {
    compile (libraries.s4_base)
    compile (libraries.s4_comm)
 
-
-
 }
 
+configurations.all {
+        exclude group: 'com.sun.jdmk', module: 'jmxtools'
+        exclude group: 'com.sun.jmx', module: 'jmxri'
+        exclude group: 'javax.jms', module: 'jms'
+        exclude group: 'javax.mail', module: 'mail'
+    }
+    
 /* Set the manifest attributes for the S4 archive here.
 *  TODO: separate custom properties from std ones and set custom properties at the top of the build script.
 */