diff --git a/Ghidra/Features/GraphServices/build.gradle b/Ghidra/Features/GraphServices/build.gradle index 2d64dfaa12..01a83e8d79 100644 --- a/Ghidra/Features/GraphServices/build.gradle +++ b/Ghidra/Features/GraphServices/build.gradle @@ -13,7 +13,6 @@ dependencies { compile "com.github.tomnelson:jungrapht-visualization:1.0" compile "com.github.tomnelson:jungrapht-layout:1.0" - compile "org.jgrapht:jgrapht-core:1.5.0" // not using jgrapht-io code that depends on antlr, so exclude antlr compile ("org.jgrapht:jgrapht-io:1.5.0") { exclude group: "org.antlr", module: "antlr4-runtime" } diff --git a/Ghidra/Framework/Graph/build.gradle b/Ghidra/Framework/Graph/build.gradle index 52f54ce712..a1ea99f59d 100644 --- a/Ghidra/Framework/Graph/build.gradle +++ b/Ghidra/Framework/Graph/build.gradle @@ -17,7 +17,7 @@ dependencies { compile "net.sf.jung:jung-graph-impl:2.1.1" compile "net.sf.jung:jung-visualization:2.1.1" - compile "org.jgrapht:jgrapht-core:1.4.0" + compile "org.jgrapht:jgrapht-core:1.5.0" // These have abstract test classes and stubs needed by this module testCompile project(path: ':Docking', configuration: 'testArtifacts')