2016-03-21 21 views

cevap

2

Bazı yapay nesneler artık 2.4.2 sürümü ile deneysel olarak işaretlenmez.

libraryDependencies ++= Seq(
    // akka 
    "com.typesafe.akka" %% "akka-actor" % "2.4.2", 
    "com.typesafe.akka" %% "akka-testkit" % "2.4.2" % "test", 
    // streams 
    "com.typesafe.akka" %% "akka-stream" % "2.4.2", 
    // akka http 
    "com.typesafe.akka" %% "akka-http-core" % "2.4.2", 
    "com.typesafe.akka" %% "akka-http-experimental" % "2.4.2", 
    "com.typesafe.akka" %% "akka-http-testkit" % "2.4.2" % "test", 
    // the next one add only if you need Spray JSON support 
    "com.typesafe.akka" %% "akka-http-spray-json-experimental" % "2.4.2", 
    "org.scalatest" %% "scalatest" % "2.2.4" % "test") 
+0

'u kullanın. Teşekkür ederim. Ancak 'akka-http' hala deneysel olduğu garip. –

+1

Bunun sebebi, DSL için bazı olası değişikliklerin var olmasıdır - sürüm haberlerine göz atın http://akka.io/news/2016/02/17/akka-2.4.2-released.html – lpiepiora