diff --git a/akka-docs/rst/modules/durable-mailbox.rst b/akka-docs/rst/modules/durable-mailbox.rst index 794ff0e751..f76cee0dbd 100644 --- a/akka-docs/rst/modules/durable-mailbox.rst +++ b/akka-docs/rst/modules/durable-mailbox.rst @@ -94,10 +94,9 @@ added in concrete subclass like this: .. includecode:: code/docs/actor/mailbox/DurableMailboxDocSpec.scala :include: custom-mailbox-test -You find DurableMailboxDocSpec in ``akka-mailboxes-common-test-2.1-SNAPSHOT.jar``. -Add this dependency:: +To use ``DurableMailboxDocSpec`` add this dependency:: - "com.typesafe.akka" % "akka-mailboxes-common-test" % "2.1-SNAPSHOT" + "com.typesafe.akka" %% "akka-mailboxes-common" % "@version@" classifier "test" @crossString@ For more inspiration you can look at the old implementations based on Redis, MongoDB, Beanstalk, and ZooKeeper, which can be found in Akka git repository tag diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index b53f681f0e..1c703122fa 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -206,7 +206,6 @@ object AkkaBuild extends Build { settings = defaultSettings ++ OSGi.mailboxesCommon ++ Seq( libraryDependencies ++= Dependencies.mailboxes, previousArtifact := akkaPreviousArtifact("akka-mailboxes-common"), - // DurableMailboxSpec published in akka-mailboxes-common-test publishArtifact in Test := true ) )