* 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
13 lines
407 B
Scala
13 lines
407 B
Scala
import akka._
|
|
|
|
AkkaBuild.defaultSettings
|
|
AkkaBuild.dontPublishSettings
|
|
AkkaBuild.experimentalSettings
|
|
Formatting.formatSettings
|
|
Dependencies.httpTests
|
|
|
|
// don't ignore Suites which is the default for the junit-interface
|
|
testOptions += Tests.Argument(TestFrameworks.JUnit, "--ignore-runners=")
|
|
|
|
scalacOptions in Compile += "-language:_"
|
|
mainClass in run in Test := Some("akka.http.javadsl.SimpleServerApp")
|