1) On first running this code through an Intellij debugger; I ran into the 
following Akka Http bug, which indicated a version upgrade was required:
https://github.com/akka/akka/issues/20236

2) After choosing the latest Akka library versions available for Scala 
2.11.7; I ran into the following Scalac bug, which indicated a version 
upgrade was required for Scala itself:
https://github.com/akka/akka/issues/19418

=====================================================================================================

I then got help from Akka User @ktoso to connect me with the Activator 
Template contributor through GitHub, or @vrcod here:
https://github.com/vrcod/akka-sample-twitter-streaming/issues

Both of them recommended not using a Milestone build for Scala; and to 
instead lookup the library version numbers correlated with the latest 
comprehensive release of Scala on this site here:

http://search.maven.org/#search%7Cga%7C1%7Cakka-http-experimental


And, @vrcod noted I should be specifying the update library versions 
correctly; but my latest attempt at that is still  doesn't work because:


*** Unresolved Dependencies on:

org.json4s#json4s-native_2.11;2.4.8: not found

Don't know WTF IDEA15 is looking for v2.4.8 of anything(!)


Since I did:


-  Quit IDEA15; then in my project directory:

rm -rf .idea/libraries

- Build/Rebuild project in IDEA15.0.3 IDE with the following in build.sbt:

scalaVersion := "2.11.8"

libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-stream-experimental" % "2.0.4",
"com.typesafe.akka" %% "akka-http-experimental" % "2.0.4",
"com.hunorkovacs" %% "koauth" % "1.1.0",
"org.json4s" %% "json4s-native" % "3.4.0"
)

In my sbt.last.log in ~/Library/Logs/IntellijIdea15; I see:
*** Unresolved Dependencies
org.json4s#json4s-native_2.11;2.4.8: not found

Minor improvement is that all other dependencies were resolved.



-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to