1

What's the correct dependency in sbt file in order to develop Akka Streams Application that can run on JVM 1.7?

Currently I have the following:

scalaVersion := "2.11.7" com.typesafe.akka" % "akka-stream_2.11" % "2.4.14

user2991054
  • 61
  • 1
  • 4

1 Answers1

4

Anything since 2.4.0 (included) won't work with Java 7 (see here).

Last available one would be 2.0.5 experimental (see here).

"com.typesafe.akka" % "akka-stream-experimental_2.11" % "2.0.5"

Stefano Bonetti
  • 8,973
  • 1
  • 25
  • 44