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