* check for binary inc. issues by default * if check is not needed, disable MimaPlugin * determine old artifact id from the current one
14 lines
399 B
Scala
14 lines
399 B
Scala
import akka.{ AkkaBuild, Dependencies, Formatting, MultiNodeScalaTest, Unidoc }
|
|
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys._
|
|
|
|
AkkaBuild.defaultSettings
|
|
AkkaBuild.dontPublishSettings
|
|
Formatting.formatSettings
|
|
Dependencies.remoteTests
|
|
|
|
// disable parallel tests
|
|
parallelExecution in Test := false
|
|
publishArtifact in Compile := false
|
|
|
|
enablePlugins(MultiNodeScalaTest)
|
|
disablePlugins(MimaPlugin)
|