Skip to content

Commit

Permalink
Docs: Cluster Usage (akka#23479)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Sebastian Harko authored and ktoso committed Aug 7, 2017
1 parent 83533e9 commit efb91ff
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions akka-docs/src/main/paradox/scala/cluster-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Scala
sbt
: @@@vars
```
"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
```
<dependency>
Expand Down

0 comments on commit efb91ff

Please sign in to comment.