* check for binary inc. issues by default * if check is not needed, disable MimaPlugin * determine old artifact id from the current one
14 lines
404 B
Scala
14 lines
404 B
Scala
import akka._
|
|
|
|
AkkaBuild.defaultSettings
|
|
AkkaBuild.dontPublishSettings
|
|
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")
|
|
|
|
disablePlugins(MimaPlugin)
|