You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 8, 2021. It is now read-only.
I am trying to build my own sbt plugin to analyze dependencies and I am trying to reproduce the same graph of dependencies that you have. But I struggle with this step.
The text was updated successfully, but these errors were encountered:
ignoreMissingUpdate is very similar to the regular update step, it runs the ivy resolution and returns an UpdateReport
configuration(...) returns the result of the resolution for one ivy configuration (like compile, provided, runtime, or test) if it exists
SbtUpdateReport.fromConfigurationReport does the real work of converting the sbt ConfigurationReport into a ModuleGraph which is the sbt-dependency-graph data structure to represent the dependencies
Hello,
Can anyone explain to me what
is doing ? Here: https://github.com/jrudolph/sbt-dependency-graph/blob/de4d508f4eaeae33f3a7343d8fc88c47efbeab1d/src/main/scala/net/virtualvoid/sbt/graph/DependencyGraphSettings.scala#L62-L63
I am trying to build my own sbt plugin to analyze dependencies and I am trying to reproduce the same graph of dependencies that you have. But I struggle with this step.
The text was updated successfully, but these errors were encountered: