+ enable parallel execution + exclude perf tests (TODO mark more as such) + uses sbt-dependency-graph plugin + implement dependency tracking for testing of only these + project which could have been affected by a given PR
25 lines
485 B
Scala
25 lines
485 B
Scala
import akka.{ AkkaBuild, Dependencies, Formatting, OSGi, Unidoc }
|
|
import com.typesafe.tools.mima.plugin.MimaKeys
|
|
import akka.MultiNode
|
|
|
|
AkkaBuild.defaultSettings
|
|
|
|
AkkaBuild.experimentalSettings
|
|
|
|
Formatting.formatSettings
|
|
|
|
Unidoc.scaladocSettings
|
|
|
|
Unidoc.javadocSettings
|
|
|
|
OSGi.persistence
|
|
|
|
Dependencies.persistence
|
|
|
|
MimaKeys.previousArtifact := akkaPreviousArtifact("akka-persistence-experimental").value
|
|
|
|
fork in Test := true
|
|
|
|
javaOptions in Test := MultiNode.defaultMultiJvmOptions
|
|
|
|
|