Printable akka in Play Framework 2.4.1
Inside the activator use show compile:dependencyClasspath
and you will get a list of all jars used at compile time.
It's ugly and unformatted, but it works.
If you want something more structured, you can install sbt-dependency-graph for more control.
- Shutdown activator
-
Add the following to
~/.sbt/0.13/plugins/plugins.sbt
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.5")
-
Add to
following:~/.sbt/0.13/global.sbt
net.virtualvoid.sbt.graph.Plugin.graphSettings
Then you will have many different dependency related tasks available in sbt / activator for example dependency-graph
.
source to share