+ 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
10 lines
255 B
Scala
10 lines
255 B
Scala
name := "akka-sample-persistence-scala"
|
|
|
|
version := "2.4-SNAPSHOT"
|
|
|
|
scalaVersion := "2.11.5"
|
|
|
|
libraryDependencies ++= Seq(
|
|
"com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT",
|
|
"com.typesafe.akka" %% "akka-persistence-experimental" % "2.4-SNAPSHOT"
|
|
)
|