Disabled mongo durable mailboxes until compilation error is solved
This commit is contained in:
parent
b121da7d2b
commit
0daa28a891
2 changed files with 14 additions and 13 deletions
|
|
@ -103,7 +103,8 @@ object AkkaBuild extends Build {
|
|||
id = "akka-durable-mailboxes",
|
||||
base = file("akka-durable-mailboxes"),
|
||||
settings = parentSettings,
|
||||
aggregate = Seq(mailboxesCommon, beanstalkMailbox, fileMailbox, redisMailbox, zookeeperMailbox, mongoMailbox)
|
||||
aggregate = Seq(mailboxesCommon, beanstalkMailbox, fileMailbox, redisMailbox, zookeeperMailbox)
|
||||
// aggregate = Seq(mailboxesCommon, beanstalkMailbox, fileMailbox, redisMailbox, zookeeperMailbox, mongoMailbox)
|
||||
)
|
||||
|
||||
lazy val mailboxesCommon = Project(
|
||||
|
|
@ -155,18 +156,18 @@ object AkkaBuild extends Build {
|
|||
settings = defaultSettings
|
||||
)
|
||||
|
||||
val testMongoMailbox = SettingKey[Boolean]("test-mongo-mailbox")
|
||||
// val testMongoMailbox = SettingKey[Boolean]("test-mongo-mailbox")
|
||||
|
||||
lazy val mongoMailbox = Project(
|
||||
id = "akka-mongo-mailbox",
|
||||
base = file("akka-durable-mailboxes/akka-mongo-mailbox"),
|
||||
dependencies = Seq(mailboxesCommon % "compile;test->test"),
|
||||
settings = defaultSettings ++ Seq(
|
||||
libraryDependencies ++= Dependencies.mongoMailbox,
|
||||
testMongoMailbox := false,
|
||||
testOptions in Test <+= testMongoMailbox map { test => Tests.Filter(s => test) }
|
||||
)
|
||||
)
|
||||
// lazy val mongoMailbox = Project(
|
||||
// id = "akka-mongo-mailbox",
|
||||
// base = file("akka-durable-mailboxes/akka-mongo-mailbox"),
|
||||
// dependencies = Seq(mailboxesCommon % "compile;test->test"),
|
||||
// settings = defaultSettings ++ Seq(
|
||||
// libraryDependencies ++= Dependencies.mongoMailbox,
|
||||
// testMongoMailbox := false,
|
||||
// testOptions in Test <+= testMongoMailbox map { test => Tests.Filter(s => test) }
|
||||
// )
|
||||
// )
|
||||
|
||||
lazy val camel = Project(
|
||||
id = "akka-camel",
|
||||
|
|
|
|||
|
|
@ -146,7 +146,7 @@ class AkkaParentProject(info: ProjectInfo) extends ParentProject(info) with Exec
|
|||
|
||||
lazy val spring_jms = "org.springframework" % "spring-jms" % SPRING_VERSION % "compile" //ApacheV2
|
||||
lazy val stax_api = "javax.xml.stream" % "stax-api" % "1.0-2" % "compile" //ApacheV2
|
||||
lazy val twitter_util_core= "com.twitter" % "util-core" % "1.8.1" // ApacheV2
|
||||
lazy val twitter_util_core= "com.twitter" % "util-core" % "1.8.1" // ApacheV2
|
||||
lazy val logback = "ch.qos.logback" % "logback-classic" % "0.9.28" % "runtime" //MIT
|
||||
lazy val log4j = "log4j" % "log4j" % "1.2.15" //ApacheV2
|
||||
lazy val zookeeper = "org.apache.hadoop.zookeeper" % "zookeeper" % ZOOKEEPER_VERSION //ApacheV2
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue