CORDA-650: Eliminate unnecessary dependency on "graphstream" library (#1732)

This library has one usage in ClientRPC example and:
* Uses Scala 2.10 - which is quite dated
* Has a transitive dependency on JUnit
This commit is contained in:
Viktor Kolomeyko
2017-09-29 13:43:42 +01:00
committed by GitHub
parent 7787896cbb
commit c2b0ed6ed5
3 changed files with 1 additions and 7 deletions

View File

@ -39,6 +39,7 @@ dependencies {
compile "org.graphstream:gs-core:1.3"
compile("org.graphstream:gs-ui:1.3") {
exclude group: "bouncycastle"
exclude group: "junit"
}
cordaCompile project(path: ":node:capsule", configuration: 'runtimeArtifacts')