score:1

Accepted answer

the prefix _2.10 in akka-actor_2.10 indicates you want the version for scala 2.10, which does not match your scala version above (2.11).

if you want to use scala 2.11, the latest version of akka would be

librarydependencies += "com.typesafe.akka" % "akka-actor_2.11" % "2.5.4"

you can see all the versions here: https://mvnrepository.com/artifact/com.typesafe.akka/akka-actor_2.11


Related Query

More Query from same tag