Remove experimental label from cluster, see #3283

This commit is contained in:
Patrik Nordwall 2013-05-23 15:18:00 +02:00
parent 410d839ce0
commit f64b68c466
6 changed files with 23 additions and 26 deletions

View file

@ -5,8 +5,6 @@
Cluster Usage
######################
.. note:: This module is :ref:`experimental <experimental>`. This document describes how to use the features implemented so far. More features are coming in Akka Coltrane. Track progress of the Coltrane milestone in `Assembla <http://www.assembla.com/spaces/akka/tickets>`_ and the `Roadmap <https://docs.google.com/document/d/18W9-fKs55wiFNjXL9q50PYOnR7-nnsImzJqHOPPbM4E/edit?hl=en_US>`_.
For introduction to the Akka Cluster concepts please see :ref:`cluster`.
Preparing Your Project for Clustering
@ -16,15 +14,10 @@ The Akka cluster is a separate jar file. Make sure that you have the following d
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-cluster-experimental_@binVersion@</artifactId>
<artifactId>akka-cluster_@binVersion@</artifactId>
<version>@version@</version>
</dependency>
If you are using the latest nightly build you should pick a timestamped Akka
version from
`<http://repo.typesafe.com/typesafe/snapshots/com/typesafe/akka/akka-cluster-experimental_@binVersion@/>`_.
We recommend against using ``SNAPSHOT`` in order to obtain stable builds.
.. _cluster_simple_example_java:
A Simple Cluster Example