Docs: Cluster Usage (#23479)
* distributed data is on by default * clarify paragraph * add missing space * make sentence shorter * fix grammar * akka cluster docs: add gradle, rename java / scala to maven / sbt
This commit is contained in:
parent
83533e9c30
commit
efb91ff8c8
1 changed files with 9 additions and 2 deletions
|
|
@ -6,14 +6,21 @@ For introduction to the Akka Cluster concepts please see @ref:[Cluster Specifica
|
||||||
|
|
||||||
The Akka cluster is a separate jar file. Make sure that you have the following dependency in your project:
|
The Akka cluster is a separate jar file. Make sure that you have the following dependency in your project:
|
||||||
|
|
||||||
Scala
|
sbt
|
||||||
: @@@vars
|
: @@@vars
|
||||||
```
|
```
|
||||||
"com.typesafe.akka" %% "akka-cluster" % "$akka.version$"
|
"com.typesafe.akka" %% "akka-cluster" % "$akka.version$"
|
||||||
```
|
```
|
||||||
@@@
|
@@@
|
||||||
|
|
||||||
Java
|
gradle
|
||||||
|
: @@@vars
|
||||||
|
```
|
||||||
|
compile group: 'com.typesafe.akka', name: 'akka-cluster_$scala.binary_version$', version: '$akka.version$'
|
||||||
|
```
|
||||||
|
@@@
|
||||||
|
|
||||||
|
maven
|
||||||
: @@@vars
|
: @@@vars
|
||||||
```
|
```
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue