Merge pull request #22227 from akka/wip-sharding-dependency-patriknw
fix sharding dependency to persistence
This commit is contained in:
commit
5ffb08cd78
3 changed files with 1 additions and 8 deletions
|
|
@ -234,10 +234,6 @@ This mode is enabled with configuration::
|
|||
|
||||
Since it is running in a cluster :ref:`persistence-java` must be configured with a distributed journal.
|
||||
|
||||
You must explicitly add the ``akka-persistence`` dependency to your build if
|
||||
you use this mode.
|
||||
|
||||
|
||||
Startup after minimum number of members
|
||||
---------------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -237,9 +237,6 @@ This mode is enabled with configuration::
|
|||
|
||||
Since it is running in a cluster :ref:`persistence-scala` must be configured with a distributed journal.
|
||||
|
||||
You must explicitly add the ``akka-persistence`` dependency to your build if
|
||||
you use this mode.
|
||||
|
||||
|
||||
Startup after minimum number of members
|
||||
---------------------------------------
|
||||
|
|
|
|||
|
|
@ -171,7 +171,7 @@ object AkkaBuild extends Build {
|
|||
// Scope "test" is alright in the pom.xml, but would have been nicer with
|
||||
// provided.
|
||||
dependencies = Seq(cluster % "compile->compile;test->test;multi-jvm->multi-jvm",
|
||||
distributedData % "compile;test->provided", persistence % "provided;test", clusterTools)
|
||||
distributedData, persistence % "compile;test->provided", clusterTools)
|
||||
).configs(MultiJvm)
|
||||
|
||||
lazy val distributedData = Project(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue