- Notifications
You must be signed in to change notification settings - Fork950
[1.x] RefactordependencyTree
into an input task#7848
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:1.10.x
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Thanks for the contribution! Given that this is a breaking change, I'd suggest targeting this first against sbt 2.x, whose next milestones would ship somewhat regularly. For sbt 1.x, we'd have to target next minor version sbt 1.11.x, which I don't know when it would be. |
Friendseeker commentedOct 31, 2024 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Thanks for the info. Shall make another PR & target the change to 2.x branch. This should (hopefully) not be a breaking change though, as this PR kept all existing settings key of |
7880e9a
tod110d00
Compared110d00
to68a1224
Compare
Uh oh!
There was an error while loading.Please reload this page.
Following Eugene'scomment, this PR refactors
dependencyTree
into an input task, with the aim ofMiniDependencyTreePlugin
DependencyTreePlugin
json
output to both terminal & fileThe refactored input task is called
dependencyReport
. OldMiniDependencyTreePlugin
settings are still kept for compatibility purpose.Syntax
dependencyReport [format] [subformat]
Parameters
format: text|json|html|graphml
: specifies the format of the output, defaults totext
subformat
: if applicable further specifies format of outputtext
format:subformat
takeslist|stat|info
, corresponding todependencyList
,dependencyStats
,dependencyLicenseInfo
. Emptysubformat
corresponds todependencyTree
html
format:subformat
takestree|graph
, corresponding tobrowseTreeHTMLTask, browseGraphHTMLTask
json/graphml
format: does not takesubformat
Example
Closes#7770