Printable akka in Play Framework 2.4.1

How can I get the current version of akka in Play Framework 2.4.1? I've searched all the config files and I don't see any dependency on akka (although I can use akka in Play).

+3


source to share


1 answer


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 ~/.sbt/0.13/global.sbt

    following:

    net.virtualvoid.sbt.graph.Plugin.graphSettings

Then you will have many different dependency related tasks available in sbt / activator for example dependency-graph

.

+2


source







All Articles