sbt / sbt-dependency-graph

sbt plugin to create a dependency graph for your project
Apache License 2.0
1.24k stars 113 forks source link

Add support for writing Flat dependency list to file #149

Closed anuccio1 closed 5 years ago

anuccio1 commented 6 years ago

I would like to run something like dependencyList, however have it write the results to a file.

alexfichel commented 6 years ago

You can try saving out to a file:

sbt dependencyList > file.txt

To remove all the console formating chars from file add option:

sbt dependencyList -Dsbt.log.format=false

jrudolph commented 5 years ago

Will be fixed by #165.