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/23 00:22:31 UTC

[6/7] git commit: Fixed build script.

Fixed build script.


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

Branch: refs/heads/piper
Commit: 406925d16a67a4a059c0bad616ed3d012add02a7
Parents: 924bc55 2aa2cb2
Author: Leo Neumeyer <le...@apache.org>
Authored: Sat Feb 4 12:23:20 2012 -0800
Committer: Leo Neumeyer <le...@apache.org>
Committed: Sat Feb 4 12:23:20 2012 -0800

----------------------------------------------------------------------
 build.gradle                       |   15 ++++++++++-----
 subprojects/s4-comm/s4-comm.gradle |    4 +---
 2 files changed, 11 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/406925d1/build.gradle
----------------------------------------------------------------------
diff --cc build.gradle
index a467269,6d2737b..adeda07
--- a/build.gradle
+++ b/build.gradle
@@@ -88,10 -87,16 +88,17 @@@ 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 {
          
 +        compile('javax.jms:jms:1.1')
          /* Google. */
          compile( libraries.guava )
          compile( libraries.guice )
@@@ -108,10 -113,8 +115,8 @@@
  
          /* Misc. */
          compile( libraries.jcip )
-         compile( libraries.zk ) {
- 		 //transitive = false
- 	}
-         
+         compile( libraries.zk )
 -             
++		
          /* Testing. */
          testCompile( libraries.junit )
      }