diff --git a/akka-docs/rst/intro/deployment-scenarios.rst b/akka-docs/rst/intro/deployment-scenarios.rst index 0cfd6b8308..03a7686c35 100644 --- a/akka-docs/rst/intro/deployment-scenarios.rst +++ b/akka-docs/rst/intro/deployment-scenarios.rst @@ -51,9 +51,9 @@ To start the application (on a unix-based system): .. code-block:: none cd target/universal/ - unzip akka-sample-main-scala-2.4-SNAPSHOT.zip - chmod u+x akka-sample-main-scala-2.4-SNAPSHOT/bin/akka-sample-main-scala - akka-sample-main-scala-2.4-SNAPSHOT/bin/akka-sample-main-scala sample.hello.Main + unzip akka-sample-main-scala-2.5-SNAPSHOT.zip + chmod u+x akka-sample-main-scala-2.5-SNAPSHOT/bin/akka-sample-main-scala + akka-sample-main-scala-2.5-SNAPSHOT/bin/akka-sample-main-scala sample.hello.Main Use ``Ctrl-C`` to interrupt and exit the application. diff --git a/akka-kernel/src/main/dist/README b/akka-kernel/src/main/dist/README index d1eacb7972..e5fe4bc9ba 100644 --- a/akka-kernel/src/main/dist/README +++ b/akka-kernel/src/main/dist/README @@ -2,7 +2,7 @@ Akka ==== -This is the Akka 2.4-SNAPSHOT download. +This is the Akka 2.5-SNAPSHOT download. Included are all libraries, documentation, and sources for Akka. diff --git a/akka-kernel/src/main/dist/config/application.conf b/akka-kernel/src/main/dist/config/application.conf index 513a211e3f..b615bcdf86 100644 --- a/akka-kernel/src/main/dist/config/application.conf +++ b/akka-kernel/src/main/dist/config/application.conf @@ -1,3 +1,3 @@ # In this file you can override any option defined in the 'reference.conf' files. # Copy in all or parts of the 'reference.conf' files and modify as you please. -# For more info about config, please visit the Akka Documentation: http://akka.io/docs/akka/2.4-SNAPSHOT/ +# For more info about config, please visit the Akka Documentation: http://akka.io/docs/akka/2.5-SNAPSHOT/ diff --git a/akka-samples/akka-sample-camel-java/build.sbt b/akka-samples/akka-sample-camel-java/build.sbt index 55ae1152ec..234f29d7d2 100644 --- a/akka-samples/akka-sample-camel-java/build.sbt +++ b/akka-samples/akka-sample-camel-java/build.sbt @@ -1,11 +1,11 @@ name := "akka-sample-camel-java" -version := "2.4-SNAPSHOT" +version := "2.5-SNAPSHOT" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-camel" % "2.4-SNAPSHOT", + "com.typesafe.akka" %% "akka-camel" % "2.5-SNAPSHOT", "org.apache.camel" % "camel-jetty" % "2.13.4", "org.apache.camel" % "camel-quartz" % "2.13.4", "org.slf4j" % "slf4j-api" % "1.7.16", diff --git a/akka-samples/akka-sample-camel-java/tutorial/index.html b/akka-samples/akka-sample-camel-java/tutorial/index.html index b2a0cc569a..1d4e0d91d3 100644 --- a/akka-samples/akka-sample-camel-java/tutorial/index.html +++ b/akka-samples/akka-sample-camel-java/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 3 samples of -Akka Camel. +Akka Camel.
This example demonstrates how to implement consumer and producer actors that support - + Asynchronous routing with their Camel endpoints. The sample application transforms the content of the Akka homepage, http://akka.io, by replacing every occurrence of *Akka* with *AKKA*. diff --git a/akka-samples/akka-sample-camel-scala/build.sbt b/akka-samples/akka-sample-camel-scala/build.sbt index 914ecbb98c..2dd9a86132 100644 --- a/akka-samples/akka-sample-camel-scala/build.sbt +++ b/akka-samples/akka-sample-camel-scala/build.sbt @@ -1,12 +1,12 @@ name := "akka-sample-camel-scala" -version := "2.4-SNAPSHOT" +version := "2.5-SNAPSHOT" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-camel" % "2.4-SNAPSHOT", + "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT", + "com.typesafe.akka" %% "akka-camel" % "2.5-SNAPSHOT", "org.apache.camel" % "camel-jetty" % "2.13.4", "org.apache.camel" % "camel-quartz" % "2.13.4", "org.slf4j" % "slf4j-api" % "1.7.16", diff --git a/akka-samples/akka-sample-camel-scala/tutorial/index.html b/akka-samples/akka-sample-camel-scala/tutorial/index.html index 648ba73a48..1026f1065f 100644 --- a/akka-samples/akka-sample-camel-scala/tutorial/index.html +++ b/akka-samples/akka-sample-camel-scala/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 3 samples of -Akka Camel. +Akka Camel.
This example demonstrates how to implement consumer and producer actors that support - + Asynchronous routing with their Camel endpoints. The sample application transforms the content of the Akka homepage, http://akka.io, by replacing every occurrence of *Akka* with *AKKA*. diff --git a/akka-samples/akka-sample-cluster-java/build.sbt b/akka-samples/akka-sample-cluster-java/build.sbt index 2c0acdac82..4f43a617a2 100644 --- a/akka-samples/akka-sample-cluster-java/build.sbt +++ b/akka-samples/akka-sample-cluster-java/build.sbt @@ -1,7 +1,7 @@ import com.typesafe.sbt.SbtMultiJvm import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm -val akkaVersion = "2.4-SNAPSHOT" +val akkaVersion = "2.5-SNAPSHOT" val project = Project( id = "akka-sample-cluster-java", @@ -10,7 +10,7 @@ val project = Project( .settings(SbtMultiJvm.multiJvmSettings: _*) .settings( name := "akka-sample-cluster-java", - version := "2.4-SNAPSHOT", + version := "2.5-SNAPSHOT", scalaVersion := "2.11.8", scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"), javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"), diff --git a/akka-samples/akka-sample-cluster-java/tutorial/index.html b/akka-samples/akka-sample-cluster-java/tutorial/index.html index 6af2d05293..6ea54d9c5f 100644 --- a/akka-samples/akka-sample-cluster-java/tutorial/index.html +++ b/akka-samples/akka-sample-cluster-java/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains 4 samples illustrating different -Akka cluster features. +Akka cluster features.
You can read more about the cluster concepts in the -documentation. +documentation.
@@ -143,7 +143,7 @@ that happen in the cluster.
In the previous sample we saw how to subscribe to cluster membership events. You can read more about it in the -documentation. +documentation. How can cluster membership events be used?
@@ -233,7 +233,7 @@ interesting to run them in separate processes. Stop the application in the-All routers +All routers can be made aware of member nodes in the cluster, i.e. deploying new routees or looking up routees on nodes in the cluster. When a node becomes unreachable or leaves the cluster the routees of that node are @@ -244,7 +244,7 @@ when a node becomes reachable again, after having been unreachable.
You can read more about cluster aware routers in the -documentation. +documentation.
@@ -346,7 +346,7 @@ and deploys workers instead of looking them up.
Open StatsSampleOneMasterMain.java.
-To keep track of a single master we use the Cluster Singleton
+To keep track of a single master we use the Cluster Singleton
in the contrib module. The ClusterSingletonManager is started on each node.
AdaptiveLoadBalancingPool and AdaptiveLoadBalancingGroup<
You can read more about cluster metrics in the
-documentation.
+documentation.
diff --git a/akka-samples/akka-sample-cluster-scala/build.sbt b/akka-samples/akka-sample-cluster-scala/build.sbt
index d186891fcf..7f92cb3d61 100644
--- a/akka-samples/akka-sample-cluster-scala/build.sbt
+++ b/akka-samples/akka-sample-cluster-scala/build.sbt
@@ -1,7 +1,7 @@
import com.typesafe.sbt.SbtMultiJvm
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm
-val akkaVersion = "2.4-SNAPSHOT"
+val akkaVersion = "2.5-SNAPSHOT"
val project = Project(
id = "akka-sample-cluster-scala",
@@ -10,7 +10,7 @@ val project = Project(
.settings(SbtMultiJvm.multiJvmSettings: _*)
.settings(
name := "akka-sample-cluster-scala",
- version := "2.4-SNAPSHOT",
+ version := "2.5-SNAPSHOT",
scalaVersion := "2.11.8",
scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"),
diff --git a/akka-samples/akka-sample-cluster-scala/tutorial/index.html b/akka-samples/akka-sample-cluster-scala/tutorial/index.html
index 1628cb5970..74af9fe198 100644
--- a/akka-samples/akka-sample-cluster-scala/tutorial/index.html
+++ b/akka-samples/akka-sample-cluster-scala/tutorial/index.html
@@ -8,7 +8,7 @@
This tutorial contains 4 samples illustrating different
-Akka cluster features.
+Akka cluster features.
- Subscribe to cluster membership events
@@ -54,7 +54,7 @@ actor.
You can read more about the cluster concepts in the
-documentation.
+documentation.
@@ -143,7 +143,7 @@ that happen in the cluster.
In the previous sample we saw how to subscribe to cluster membership events.
You can read more about it in the
-documentation.
+documentation.
How can cluster membership events be used?
@@ -233,7 +233,7 @@ interesting to run them in separate processes. Stop the application in the
Cluster Aware Routers
-All routers
+All routers
can be made aware of member nodes in the cluster, i.e. deploying new routees or looking up routees
on nodes in the cluster.
When a node becomes unreachable or leaves the cluster the routees of that node are
@@ -244,7 +244,7 @@ when a node becomes reachable again, after having been unreachable.
You can read more about cluster aware routers in the
-documentation.
+documentation.
@@ -345,7 +345,7 @@ and deploys workers instead of looking them up.
Open StatsSampleOneMaster.scala.
-To keep track of a single master we use the Cluster Singleton
+To keep track of a single master we use the Cluster Singleton
in the contrib module. The ClusterSingletonManager is started on each node.
@@ -410,7 +410,7 @@ the AdaptiveLoadBalancingPool and AdaptiveLoadBalancingGroup<
You can read more about cluster metrics in the
-documentation.
+documentation.
diff --git a/akka-samples/akka-sample-distributed-data-java/build.sbt b/akka-samples/akka-sample-distributed-data-java/build.sbt
index 3654deb7fd..a716164e6b 100644
--- a/akka-samples/akka-sample-distributed-data-java/build.sbt
+++ b/akka-samples/akka-sample-distributed-data-java/build.sbt
@@ -1,7 +1,7 @@
import com.typesafe.sbt.SbtMultiJvm
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm
-val akkaVersion = "2.4-SNAPSHOT"
+val akkaVersion = "2.5-SNAPSHOT"
val project = Project(
id = "akka-sample-distributed-data-java",
@@ -10,7 +10,7 @@ val project = Project(
.settings(SbtMultiJvm.multiJvmSettings: _*)
.settings(
name := "akka-sample-distributed-data-java",
- version := "2.4-SNAPSHOT",
+ version := "2.5-SNAPSHOT",
scalaVersion := "2.11.8",
scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation", "-Xdiags:verbose"),
diff --git a/akka-samples/akka-sample-distributed-data-java/tutorial/index.html b/akka-samples/akka-sample-distributed-data-java/tutorial/index.html
index d2e9da6d7a..7b18760709 100644
--- a/akka-samples/akka-sample-distributed-data-java/tutorial/index.html
+++ b/akka-samples/akka-sample-distributed-data-java/tutorial/index.html
@@ -8,7 +8,7 @@
This tutorial contains 5 samples illustrating how to use
-Akka Distributed Data.
+Akka Distributed Data.
- Low Latency Voting Service
@@ -47,7 +47,7 @@ out-of-date value.
Note that there are some
-Limitations
+Limitations
that you should be aware of. For example, Akka Distributed Data is not intended for Big Data.
@@ -71,7 +71,7 @@ Open OPEN message on one or several nodes. After that the counting can begin. The open
signal is immediately replicated to all nodes with a boolean
-Flag.
+Flag.
Note writeAll.
@@ -94,7 +94,7 @@ replicator.tell(new Subscribe<>(openedKey, self()), ActorRef.noSender());
The counters are kept in a
-PNCounterMap
+PNCounterMap
and updated with:
@@ -139,7 +139,7 @@ The multi-node test for the VotingService can be found in
Read the
-Using the Replicator
+Using the Replicator
documentation for more details of how to use Get, Update, and Subscribe.
@@ -165,7 +165,7 @@ instances may be started on different nodes and used at the same time.
Each product in the cart is represented by a LineItem and all items in the cart
-is collected in a LWWMap.
+is collected in a LWWMap.
@@ -187,7 +187,7 @@ The multi-node test for the ShoppingCart can be found in
Read the
-Consistency
+Consistency
section in the documentation to understand the consistency considerations.
@@ -218,7 +218,7 @@ It supports two basic commands:
For each named service it is using an
-ORSet.
+ORSet.
Here we are using top level ORSet entries. An alternative would have been to use a
ORMultiMap holding all services. That would have a disadvantage if we have many services.
When a data entry is changed the full state of that entry is replicated to other nodes, i.e. when you
diff --git a/akka-samples/akka-sample-distributed-data-scala/build.sbt b/akka-samples/akka-sample-distributed-data-scala/build.sbt
index 459a285d25..32cc9bc4e5 100644
--- a/akka-samples/akka-sample-distributed-data-scala/build.sbt
+++ b/akka-samples/akka-sample-distributed-data-scala/build.sbt
@@ -1,7 +1,7 @@
import com.typesafe.sbt.SbtMultiJvm
import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm
-val akkaVersion = "2.4-SNAPSHOT"
+val akkaVersion = "2.5-SNAPSHOT"
val project = Project(
id = "akka-sample-distributed-data-scala",
@@ -10,7 +10,7 @@ val project = Project(
.settings(SbtMultiJvm.multiJvmSettings: _*)
.settings(
name := "akka-sample-distributed-data-scala",
- version := "2.4-SNAPSHOT",
+ version := "2.5-SNAPSHOT",
scalaVersion := "2.11.8",
scalacOptions in Compile ++= Seq("-encoding", "UTF-8", "-target:jvm-1.8", "-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
javacOptions in Compile ++= Seq("-source", "1.8", "-target", "1.8", "-Xlint:unchecked", "-Xlint:deprecation"),
diff --git a/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html b/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html
index b0e7690d24..1fb6df6200 100644
--- a/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html
+++ b/akka-samples/akka-sample-distributed-data-scala/tutorial/index.html
@@ -8,7 +8,7 @@
This tutorial contains 5 samples illustrating how to use
-Akka Distributed Data.
+Akka Distributed Data.
- Low Latency Voting Service
@@ -47,7 +47,7 @@ out-of-date value.
Note that there are some
-Limitations
+Limitations
that you should be aware of. For example, Akka Distributed Data is not intended for Big Data.
@@ -71,7 +71,7 @@ Open Open message on one or several nodes. After that the counting can begin. The open
signal is immediately replicated to all nodes with a boolean
-Flag.
+Flag.
Note WriteAll.
@@ -94,7 +94,7 @@ case c @ Changed(OpenedKey) if c.get(OpenedKey).enabled
The counters are kept in a
-PNCounterMap
+PNCounterMap
and updated with:
@@ -131,7 +131,7 @@ The multi-node test for the VotingService can be found in
Read the
-Using the Replicator
+Using the Replicator
documentation for more details of how to use Get, Update, and Subscribe.
@@ -157,7 +157,7 @@ instances may be started on different nodes and used at the same time.
Each product in the cart is represented by a LineItem and all items in the cart
-is collected in a LWWMap.
+is collected in a LWWMap.
@@ -179,7 +179,7 @@ The multi-node test for the ShoppingCart can be found in
Read the
-Consistency
+Consistency
section in the documentation to understand the consistency considerations.
@@ -210,7 +210,7 @@ It supports two basic commands:
For each named service it is using an
-ORSet.
+ORSet.
Here we are using top level ORSet entries. An alternative would have been to use a
ORMultiMap holding all services. That would have a disadvantage if we have many services.
When a data entry is changed the full state of that entry is replicated to other nodes, i.e. when you
diff --git a/akka-samples/akka-sample-fsm-java-lambda/build.sbt b/akka-samples/akka-sample-fsm-java-lambda/build.sbt
index ff5cf7a58c..607c52f5e5 100644
--- a/akka-samples/akka-sample-fsm-java-lambda/build.sbt
+++ b/akka-samples/akka-sample-fsm-java-lambda/build.sbt
@@ -1,6 +1,6 @@
name := "akka-sample-fsm-java-lambda"
-version := "2.4-SNAPSHOT"
+version := "2.5-SNAPSHOT"
scalaVersion := "2.11.8"
@@ -11,8 +11,8 @@ javacOptions in doc ++= Seq("-encoding", "UTF-8", "-source", "1.8")
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a")
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT",
- "com.typesafe.akka" %% "akka-testkit" % "2.4-SNAPSHOT" % "test",
+ "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT",
+ "com.typesafe.akka" %% "akka-testkit" % "2.5-SNAPSHOT" % "test",
"junit" % "junit" % "4.11" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test")
diff --git a/akka-samples/akka-sample-fsm-java-lambda/pom.xml b/akka-samples/akka-sample-fsm-java-lambda/pom.xml
index 9284c5c36e..e18c9278dd 100644
--- a/akka-samples/akka-sample-fsm-java-lambda/pom.xml
+++ b/akka-samples/akka-sample-fsm-java-lambda/pom.xml
@@ -11,18 +11,18 @@
sample
akka-sample-fsm-java-lambda
jar
- 2.4-SNAPSHOT
+ 2.5-SNAPSHOT
com.typesafe.akka
akka-actor_2.11
- 2.4-SNAPSHOT
+ 2.5-SNAPSHOT
com.typesafe.akka
akka-testkit_2.11
- 2.4-SNAPSHOT
+ 2.5-SNAPSHOT
junit
diff --git a/akka-samples/akka-sample-fsm-java-lambda/tutorial/index.html b/akka-samples/akka-sample-fsm-java-lambda/tutorial/index.html
index 351a6cbb40..f52005cb18 100644
--- a/akka-samples/akka-sample-fsm-java-lambda/tutorial/index.html
+++ b/akka-samples/akka-sample-fsm-java-lambda/tutorial/index.html
@@ -40,7 +40,7 @@ In the log output you can see the actions of the Hakker actors.
Read more about become in
-the documentation.
+the documentation.
@@ -64,7 +64,7 @@ In the log output you can see the actions of the Hakker actors.
Read more about akka.actor.FSM in
-the documentation.
+the documentation.
diff --git a/akka-samples/akka-sample-fsm-scala/build.sbt b/akka-samples/akka-sample-fsm-scala/build.sbt
index bb7a8cd39e..e256544d91 100644
--- a/akka-samples/akka-sample-fsm-scala/build.sbt
+++ b/akka-samples/akka-sample-fsm-scala/build.sbt
@@ -1,11 +1,11 @@
name := "akka-sample-fsm-scala"
-version := "2.4-SNAPSHOT"
+version := "2.5-SNAPSHOT"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT"
+ "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT"
)
licenses := Seq(("CC0", url("http://creativecommons.org/publicdomain/zero/1.0")))
diff --git a/akka-samples/akka-sample-fsm-scala/tutorial/index.html b/akka-samples/akka-sample-fsm-scala/tutorial/index.html
index f93319b8ad..6ad8955fc2 100644
--- a/akka-samples/akka-sample-fsm-scala/tutorial/index.html
+++ b/akka-samples/akka-sample-fsm-scala/tutorial/index.html
@@ -41,7 +41,7 @@ In the log output you can see the actions of the Hakker actors.
Read more about become in
-the documentation.
+the documentation.
@@ -65,7 +65,7 @@ In the log output you can see the actions of the Hakker actors.
Read more about akka.actor.FSM in
-the documentation.
+the documentation.
sample.hello and it further assumes that you have the required JAR files for
scala-library, typesafe-config and akka-actor available.
The easiest would be to manage these dependencies with a
-build tool.
+build tool.
diff --git a/akka-samples/akka-sample-main-java/build.sbt b/akka-samples/akka-sample-main-java/build.sbt
index 5dc58fb852..d451232985 100644
--- a/akka-samples/akka-sample-main-java/build.sbt
+++ b/akka-samples/akka-sample-main-java/build.sbt
@@ -1,11 +1,11 @@
name := "akka-sample-main-java"
-version := "2.4-SNAPSHOT"
+version := "2.5-SNAPSHOT"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT"
+ "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT"
)
licenses := Seq(("CC0", url("http://creativecommons.org/publicdomain/zero/1.0")))
diff --git a/akka-samples/akka-sample-main-java/pom.xml b/akka-samples/akka-sample-main-java/pom.xml
index 8989612185..0f83da61bf 100644
--- a/akka-samples/akka-sample-main-java/pom.xml
+++ b/akka-samples/akka-sample-main-java/pom.xml
@@ -17,7 +17,7 @@
sample.hello and it further assumes that you have the required JAR files for
scala-library, typesafe-config and akka-actor available.
The easiest would be to manage these dependencies with a
-build tool.
+build tool.
diff --git a/akka-samples/akka-sample-main-scala/build.sbt b/akka-samples/akka-sample-main-scala/build.sbt
index 5ca00aea90..a2991dc290 100644
--- a/akka-samples/akka-sample-main-scala/build.sbt
+++ b/akka-samples/akka-sample-main-scala/build.sbt
@@ -2,12 +2,12 @@ import NativePackagerHelper._
name := "akka-sample-main-scala"
-version := "2.4-SNAPSHOT"
+version := "2.5-SNAPSHOT"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT"
+ "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT"
)
enablePlugins(JavaServerAppPackaging)
diff --git a/akka-samples/akka-sample-main-scala/tutorial/index.html b/akka-samples/akka-sample-main-scala/tutorial/index.html
index c87f15a9ff..404ee3754a 100644
--- a/akka-samples/akka-sample-main-scala/tutorial/index.html
+++ b/akka-samples/akka-sample-main-scala/tutorial/index.html
@@ -76,7 +76,7 @@ This conveniently assumes placement of the above class definitions in package
sample.hello and it further assumes that you have the required JAR files for
scala-library, typesafe-config and akka-actor available.
The easiest would be to manage these dependencies with a
-build tool.
+build tool.
diff --git a/akka-samples/akka-sample-multi-node-scala/build.sbt b/akka-samples/akka-sample-multi-node-scala/build.sbt index cad5836471..08fef52eaa 100644 --- a/akka-samples/akka-sample-multi-node-scala/build.sbt +++ b/akka-samples/akka-sample-multi-node-scala/build.sbt @@ -1,7 +1,7 @@ import com.typesafe.sbt.SbtMultiJvm import com.typesafe.sbt.SbtMultiJvm.MultiJvmKeys.MultiJvm -val akkaVersion = "2.4-SNAPSHOT" +val akkaVersion = "2.5-SNAPSHOT" val project = Project( id = "akka-sample-multi-node-scala", @@ -10,7 +10,7 @@ val project = Project( .settings(SbtMultiJvm.multiJvmSettings: _*) .settings( name := "akka-sample-multi-node-scala", - version := "2.4-SNAPSHOT", + version := "2.5-SNAPSHOT", scalaVersion := "2.11.8", libraryDependencies ++= Seq( "com.typesafe.akka" %% "akka-actor" % akkaVersion, diff --git a/akka-samples/akka-sample-multi-node-scala/tutorial/index.html b/akka-samples/akka-sample-multi-node-scala/tutorial/index.html index 2240387e64..0de31ddf95 100644 --- a/akka-samples/akka-sample-multi-node-scala/tutorial/index.html +++ b/akka-samples/akka-sample-multi-node-scala/tutorial/index.html @@ -13,12 +13,12 @@ and test classes for illustrating multi-node testing with Akka.
Please refer to the full documentation of -multi-node testing +multi-node testing and the closely related -multi-jvm testing +multi-jvm testing for details. There is also an section on -cluster testing. +cluster testing.
The same test can be run on multiple machines as described in the -multi-node testing documentation. +multi-node testing documentation.
diff --git a/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml b/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml index e2d652cb84..73c89d95c5 100644 --- a/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml +++ b/akka-samples/akka-sample-osgi-dining-hakkers/api/pom.xml @@ -5,7 +5,7 @@This tutorial contains examples that illustrate a subset of -Akka Persistence features. +Akka Persistence features.
PersistentActorExample.java
-is described in detail in the Event sourcing
+is described in detail in the Event sourcing
section of the user documentation. With every application run, the ExamplePersistentActor is recovered from
events stored in previous application runs, processes new commands, stores new events and snapshots and prints the
current persistent actor state to stdout.
diff --git a/akka-samples/akka-sample-persistence-java/build.sbt b/akka-samples/akka-sample-persistence-java/build.sbt
index 8496e0648e..3e05bd753b 100644
--- a/akka-samples/akka-sample-persistence-java/build.sbt
+++ b/akka-samples/akka-sample-persistence-java/build.sbt
@@ -1,11 +1,11 @@
name := "akka-sample-persistence-java"
-version := "2.4-SNAPSHOT"
+version := "2.5-SNAPSHOT"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
- "com.typesafe.akka" %% "akka-persistence" % "2.4-SNAPSHOT",
+ "com.typesafe.akka" %% "akka-persistence" % "2.5-SNAPSHOT",
"org.iq80.leveldb" % "leveldb" % "0.7",
"org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8"
)
diff --git a/akka-samples/akka-sample-persistence-java/tutorial/index.html b/akka-samples/akka-sample-persistence-java/tutorial/index.html
index c24b1e21ac..2fa99ad9d7 100644
--- a/akka-samples/akka-sample-persistence-java/tutorial/index.html
+++ b/akka-samples/akka-sample-persistence-java/tutorial/index.html
@@ -9,7 +9,7 @@
This tutorial contains examples that illustrate a subset of -Akka Persistence features. +Akka Persistence features.
PersistentActorExample.java
-is described in detail in the Event sourcing
+is described in detail in the Event sourcing
section of the user documentation. With every application run, the ExamplePersistentActor is recovered from
events stored in previous application runs, processes new commands, stores new events and snapshots and prints the
current persistent actor state to stdout.
@@ -78,7 +78,7 @@ in the case where you persist a command that corrupts your state. The corrupt co
to delete the corrupt commands from the journal.
-In an event sourced +In an event sourced system, one does not persist commands directly but rather events that have been derived from received commands (not shown here). These events are known to be successfully applicable to current processor state i.e. there's no need for deleting them from the journal. Event sourced processors usually have a lower throughput than command diff --git a/akka-samples/akka-sample-persistence-scala/build.sbt b/akka-samples/akka-sample-persistence-scala/build.sbt index 2cf1264817..8330b0cd40 100644 --- a/akka-samples/akka-sample-persistence-scala/build.sbt +++ b/akka-samples/akka-sample-persistence-scala/build.sbt @@ -1,12 +1,12 @@ name := "akka-sample-persistence-scala" -version := "2.4-SNAPSHOT" +version := "2.5-SNAPSHOT" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-persistence" % "2.4-SNAPSHOT", + "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT", + "com.typesafe.akka" %% "akka-persistence" % "2.5-SNAPSHOT", "org.iq80.leveldb" % "leveldb" % "0.7", "org.fusesource.leveldbjni" % "leveldbjni-all" % "1.8" ) diff --git a/akka-samples/akka-sample-persistence-scala/tutorial/index.html b/akka-samples/akka-sample-persistence-scala/tutorial/index.html index 338fd59b8b..5e0ac1829a 100644 --- a/akka-samples/akka-sample-persistence-scala/tutorial/index.html +++ b/akka-samples/akka-sample-persistence-scala/tutorial/index.html @@ -8,7 +8,7 @@
This tutorial contains examples that illustrate a subset of -Akka Persistence features. +Akka Persistence features.
PersistentActorExample.scala
-is described in detail in the Event sourcing
+is described in detail in the Event sourcing
section of the user documentation. With every application run, the ExamplePersistentActor is recovered from
events stored in previous application runs, processes new commands, stores new events and snapshots and prints the
current persistent actor state to stdout.
@@ -85,7 +85,7 @@ To run this example, go to the Run tab, and
-Event sourcing +Event sourcing on the other hand, does not persist commands directly but rather events that have been derived from received commands (not shown here). These events are known to be successfully applicable to current processor state i.e. there's no need for deleting them from the journal. Event sourced processors usually have a lower throughput than command diff --git a/akka-samples/akka-sample-remote-java/build.sbt b/akka-samples/akka-sample-remote-java/build.sbt index 235a8a7ec0..76fb58ef75 100644 --- a/akka-samples/akka-sample-remote-java/build.sbt +++ b/akka-samples/akka-sample-remote-java/build.sbt @@ -1,12 +1,12 @@ name := "akka-sample-remote-java" -version := "2.4-SNAPSHOT" +version := "2.5-SNAPSHOT" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-remote" % "2.4-SNAPSHOT" + "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT", + "com.typesafe.akka" %% "akka-remote" % "2.5-SNAPSHOT" ) licenses := Seq(("CC0", url("http://creativecommons.org/publicdomain/zero/1.0"))) diff --git a/akka-samples/akka-sample-remote-java/tutorial/index.html b/akka-samples/akka-sample-remote-java/tutorial/index.html index 45ca1b3ac1..1c7ea8e62f 100644 --- a/akka-samples/akka-sample-remote-java/tutorial/index.html +++ b/akka-samples/akka-sample-remote-java/tutorial/index.html @@ -7,7 +7,7 @@
-In order to showcase the remote capabilities of Akka +In order to showcase the remote capabilities of Akka we thought a remote calculator could do the trick. This sample demonstrates both remote deployment and look-up of remote actors.
diff --git a/akka-samples/akka-sample-remote-scala/build.sbt b/akka-samples/akka-sample-remote-scala/build.sbt index cea4fd906b..31f8bb865e 100644 --- a/akka-samples/akka-sample-remote-scala/build.sbt +++ b/akka-samples/akka-sample-remote-scala/build.sbt @@ -1,12 +1,12 @@ name := "akka-sample-remote-scala" -version := "2.4-SNAPSHOT" +version := "2.5-SNAPSHOT" scalaVersion := "2.11.8" libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-remote" % "2.4-SNAPSHOT" + "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT", + "com.typesafe.akka" %% "akka-remote" % "2.5-SNAPSHOT" ) licenses := Seq(("CC0", url("http://creativecommons.org/publicdomain/zero/1.0"))) diff --git a/akka-samples/akka-sample-remote-scala/tutorial/index.html b/akka-samples/akka-sample-remote-scala/tutorial/index.html index 952f5e608f..a89e903982 100644 --- a/akka-samples/akka-sample-remote-scala/tutorial/index.html +++ b/akka-samples/akka-sample-remote-scala/tutorial/index.html @@ -7,7 +7,7 @@-In order to showcase the remote capabilities of Akka +In order to showcase the remote capabilities of Akka we thought a remote calculator could do the trick. This sample demonstrates both remote deployment and look-up of remote actors.
diff --git a/akka-samples/akka-sample-supervision-java-lambda/build.sbt b/akka-samples/akka-sample-supervision-java-lambda/build.sbt index 41d2ebbbd1..95746db778 100644 --- a/akka-samples/akka-sample-supervision-java-lambda/build.sbt +++ b/akka-samples/akka-sample-supervision-java-lambda/build.sbt @@ -1,6 +1,6 @@ name := "akka-sample-supervision-java-lambda" -version := "2.4-SNAPSHOT" +version := "2.5-SNAPSHOT" scalaVersion := "2.11.8" @@ -11,8 +11,8 @@ javacOptions in doc ++= Seq("-encoding", "UTF-8", "-source", "1.8", "-Xdoclint:n testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a") libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.4-SNAPSHOT", - "com.typesafe.akka" %% "akka-testkit" % "2.4-SNAPSHOT" % "test", + "com.typesafe.akka" %% "akka-actor" % "2.5-SNAPSHOT", + "com.typesafe.akka" %% "akka-testkit" % "2.5-SNAPSHOT" % "test", "junit" % "junit" % "4.12" % "test", "com.novocode" % "junit-interface" % "0.11" % "test") diff --git a/akka-samples/akka-sample-supervision-java-lambda/pom.xml b/akka-samples/akka-sample-supervision-java-lambda/pom.xml index 7ab7e78a01..948f331434 100644 --- a/akka-samples/akka-sample-supervision-java-lambda/pom.xml +++ b/akka-samples/akka-sample-supervision-java-lambda/pom.xml @@ -11,18 +11,18 @@You should also visit
diff --git a/project/AkkaBuild.scala b/project/AkkaBuild.scala index 8edf97e641..9c4121ae4e 100644 --- a/project/AkkaBuild.scala +++ b/project/AkkaBuild.scala @@ -34,7 +34,7 @@ object AkkaBuild extends Build { lazy val buildSettings = Dependencies.Versions ++ Seq( organization := "com.typesafe.akka", - version := "2.4-SNAPSHOT" + version := "2.5-SNAPSHOT" ) lazy val rootSettings = parentSettings ++ Release.settings ++