Updated Branches:
refs/heads/piper 988ee77cc -> b54087209
Reverting previous change to build.gradle. This works with gradle 1.0 M5 but breaks in M7.
NEEDS FIX.
Project: http://git-wip-us.apache.org/repos/asf/incubator-s4/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-s4/commit/b5408720
Tree: http://git-wip-us.apache.org/repos/asf/incubator-s4/tree/b5408720
Diff: http://git-wip-us.apache.org/repos/asf/incubator-s4/diff/b5408720
Branch: refs/heads/piper
Commit: b540872091d4840b0484826954e52d2b33724fd7
Parents: 988ee77
Author: Leo Neumeyer <leoneu@apache.org>
Authored: Sat Feb 4 11:34:01 2012 -0800
Committer: Leo Neumeyer <leoneu@apache.org>
Committed: Sat Feb 4 11:34:01 2012 -0800
----------------------------------------------------------------------
build.gradle | 4 +---
subprojects/s4-comm/s4-comm.gradle | 4 +---
2 files changed, 2 insertions(+), 6 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/b5408720/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index a14fd20..acf40f7 100644
--- a/build.gradle
+++ b/build.gradle
@@ -106,9 +106,7 @@ subprojects {
/* Misc. */
compile( libraries.jcip )
- compile( libraries.zk ) {
- transitive = false
- }
+ compile( libraries.zk )
/* Testing. */
testCompile( libraries.junit )
http://git-wip-us.apache.org/repos/asf/incubator-s4/blob/b5408720/subprojects/s4-comm/s4-comm.gradle
----------------------------------------------------------------------
diff --git a/subprojects/s4-comm/s4-comm.gradle b/subprojects/s4-comm/s4-comm.gradle
index 7902378..01da142 100644
--- a/subprojects/s4-comm/s4-comm.gradle
+++ b/subprojects/s4-comm/s4-comm.gradle
@@ -22,9 +22,7 @@ dependencies {
compile libraries.gson
compile libraries.kryo
compile libraries.netty
- compile (libraries.zkclient) {
- transitive = false
- }
+ compile (libraries.zkclient)
}
task testJar(type: Jar) {
|