Repository: incubator-geode Updated Branches: refs/heads/develop 3d99fa920 -> 167abe1a4
GEODE-1118: Exclude junit-dep from dependencies Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/167abe1a Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/167abe1a Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/167abe1a Branch: refs/heads/develop Commit: 167abe1a442308194e80202df25f30546d04609b Parents: 3d99fa9 Author: Kirk Lund <[email protected]> Authored: Mon Mar 21 16:23:53 2016 -0700 Committer: Kirk Lund <[email protected]> Committed: Mon Mar 21 16:24:36 2016 -0700 ---------------------------------------------------------------------- gradle/test.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/167abe1a/gradle/test.gradle ---------------------------------------------------------------------- diff --git a/gradle/test.gradle b/gradle/test.gradle index 6153212..3dfefbd 100644 --- a/gradle/test.gradle +++ b/gradle/test.gradle @@ -46,7 +46,9 @@ gradle.taskGraph.whenReady({ graph -> subprojects { dependencies { - testCompile 'com.github.stefanbirkner:system-rules:' + project.'system-rules.version' + testCompile ('com.github.stefanbirkner:system-rules:' + project.'system-rules.version') { + exclude module: 'junit-dep' + } testCompile 'com.google.code.tempus-fugit:tempus-fugit:' + project.'tempus-fugit.version' testCompile 'com.jayway.awaitility:awaitility:' + project.'awaitility.version' testCompile 'edu.umd.cs.mtc:multithreadedtc:' + project.'multithreadedtc.version'
