Various streams build improvements

* remove settings duplication between AkkaBuild and project specific .sbt files
* do not publish test projects
* run akka-http-core tests
* fix lambda sample project versions
* remove obsolete projects (streamAndHttp, httpParent, docsDev)
* exclude parsing project from unidoc
* update to the latest sbt
This commit is contained in:
Martynas Mickevičius 2016-01-18 18:16:30 +02:00
parent 70ff55ac36
commit 7743aa9d0a
25 changed files with 62 additions and 193 deletions

View file

@ -40,7 +40,7 @@ private[http] final case class RequestContextImpl(underlying: ScalaRequestContex
case MarshallerImpl(m)
implicit val marshaller = m(underlying.executionContext)
underlying.complete(value)
case _ throw new IllegalArgumentException("Unsupported marshaller: $marshaller")
case _ throw new IllegalArgumentException(s"Unsupported marshaller: $marshaller")
}
def complete(response: jm.HttpResponse): RouteResult = underlying.complete(response.asScala)