+per #16541 initial version of the Persistence Query module

This commit is contained in:
Patrik Nordwall & Konrad Malawski 2015-06-08 12:26:19 +02:00 committed by Konrad Malawski
parent 09aff42d40
commit f849793f36
23 changed files with 1051 additions and 14 deletions

View file

@ -19,6 +19,10 @@ object Dependencies {
object Compile {
// Compile
// Akka Streams // FIXME: change to project dependency once merged before 2.4.0
val akkaStream = "com.typesafe.akka" %% "akka-stream-experimental" % "1.0"
val camelCore = "org.apache.camel" % "camel-core" % "2.13.4" exclude("org.slf4j", "slf4j-api") // ApacheV2
// when updating config version, update links ActorSystem ScalaDoc to link to the updated version
@ -108,6 +112,8 @@ object Dependencies {
val persistence = l ++= Seq(protobuf, Provided.levelDB, Provided.levelDBNative, Test.scalatest.value, Test.junit, Test.commonsIo, Test.scalaXml)
val persistenceQuery = l ++= Seq(akkaStream, Test.scalatest.value, Test.junit, Test.commonsIo)
val persistenceTck = l ++= Seq(Test.scalatest.value.copy(configurations = Some("compile")), Test.junit.copy(configurations = Some("compile")))
val kernel = l ++= Seq(Test.scalatest.value, Test.junit)