Reputation: 81
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
Upvotes: 1
Views: 427
Reputation: 9023
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"
Upvotes: 4