I need to add dependency on akka-testkit
to my Play! application. I would like to avoid hardcoding the version of Akka and stick to the one used by Play instead (to ensure compatibility).
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % Test
Is it possible to obtain the version in my build.sbt
? The only place where I see it listed is in Play's project/Dependencies.scala
.