Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Strategy/Maven.hs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ getDepsPlugin ::
m (Graphing MavenDependency, GraphBreadth)
getDepsPlugin closure =
context "Plugin analysis" $
Plugin.analyze' (PomClosure.closurePoms closure) (parent $ PomClosure.closurePath closure)
Plugin.analyze' (PomClosure.closurePoms closure) (PomClosure.closureAnalysisRoot closure)

getDepsPluginLegacy ::
( CandidateCommandEffs sig m
Expand All @@ -162,7 +162,7 @@ getDepsPluginLegacy ::
m (Graphing MavenDependency, GraphBreadth)
getDepsPluginLegacy closure =
context "Legacy Plugin analysis" $
Plugin.analyzeLegacy' (PomClosure.closurePoms closure) (parent $ PomClosure.closurePath closure)
Plugin.analyzeLegacy' (PomClosure.closurePoms closure) (PomClosure.closureAnalysisRoot closure)

getDepsTreeCmd ::
( Has (Lift IO) sig m
Expand All @@ -173,8 +173,8 @@ getDepsTreeCmd ::
m (Graphing MavenDependency, GraphBreadth)
getDepsTreeCmd closure =
context "Dynamic analysis" $
DepTreeCmd.analyze . parent $
PomClosure.closurePath closure
DepTreeCmd.analyze $
PomClosure.closureAnalysisRoot closure

getStaticAnalysis ::
( Has (Lift IO) sig m
Expand Down
Loading