From 039229cdfd9a1a9b22da6b3e7aa54334d6d8f755 Mon Sep 17 00:00:00 2001 From: Matthew Nesbit Date: Thu, 1 Sep 2016 10:46:57 +0100 Subject: [PATCH] Remove bouncycastle-jdk14 that is causing problems for one of the member banks. Only need testCompile scope --- node/build.gradle | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/node/build.gradle b/node/build.gradle index e2d8528f9f..535b4635e2 100644 --- a/node/build.gradle +++ b/node/build.gradle @@ -61,8 +61,10 @@ dependencies { compile "org.fusesource.jansi:jansi:1.13" // GraphStream: For visualisation - compile "org.graphstream:gs-core:1.3" - compile "org.graphstream:gs-ui:1.3" + testCompile "org.graphstream:gs-core:1.3" + testCompile("org.graphstream:gs-ui:1.3") { + exclude group: "bouncycastle" + } compile("com.intellij:forms_rt:7.0.3") { exclude group: "asm" }