sbt-dependency-graph
sbt-dependency-graph copied to clipboard
sbt plugin to create a dependency graph for your project
There's lots of extra space when this particular dependency is printed: ``` [info] Apache License, Version 2.0 and Common Development And Distribution License (CDDL) Version 1.0 [info] org.apache.tomcat:tomcat-servlet-api:8.0.21 ```
This would be another column in the table which shows the aggregated size of jars that only depend on this module. In other words, how much you could avoid by...
It would be useful to show when [a dependency is not on the classpath due to classpathTypes](http://stackoverflow.com/questions/29022678/dependency-missing-from-classpath), similarly to how evictions are currently handled. Even more useful would be to...
having a build file: ``` lazy val root = (project in file(".")). settings( name := "hello", version := "1.0", scalaVersion := "2.11.4", libraryDependencies += "com.github.tomakehurst" % "wiremock" % "1.56" %...
Firstly, thanks for providing this excellent plugin for the community! My team uses it regularly to comply with our legal department's policy to keep a record of all OSS libraries...
I have extended the plugin to list dependencies homepage info. We are using this to report changes in the project with respective changes listed on module's homepage. There is also...