Skip to content

Commit

Permalink
Update README to mention Akka 2.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ngocdaothanh committed Sep 8, 2014
1 parent a766f21 commit 52697d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.rst
Expand Up @@ -4,7 +4,7 @@ Glokka is a Scala library that allows you to register and lookup actors by names
in an Akka cluster. See:

* `Erlang's "global" module <http://erlang.org/doc/man/global.html>`_
* `Akka's cluster feature <http://doc.akka.io/docs/akka/2.3.5/scala/cluster-usage.html>`_
* `Akka's cluster feature <http://doc.akka.io/docs/akka/2.3.6/scala/cluster-usage.html>`_

Glokka is used in `Xitrum <http://xitrum-framework.github.io/>`_ to implement
its distributed `SockJS <https://github.com/sockjs/sockjs-client>`_ feature.
Expand All @@ -18,11 +18,11 @@ In your SBT project's build.sbt:

::

libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.5"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.6"

libraryDependencies += "com.typesafe.akka" %% "akka-cluster" % "2.3.5"
libraryDependencies += "com.typesafe.akka" %% "akka-cluster" % "2.3.6"

libraryDependencies += "com.typesafe.akka" %% "akka-contrib" % "2.3.5"
libraryDependencies += "com.typesafe.akka" %% "akka-contrib" % "2.3.6"

libraryDependencies += "tv.cntt" %% "glokka" % "2.0"

Expand Down
6 changes: 3 additions & 3 deletions build.sbt
Expand Up @@ -16,11 +16,11 @@ scalacOptions ++= Seq("-deprecation", "-feature", "-unchecked")
// java.lang.UnsupportedClassVersionError: Unsupported major.minor version 51.0
javacOptions ++= Seq("-source", "1.6", "-target", "1.6")

libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.5" % "provided"
libraryDependencies += "com.typesafe.akka" %% "akka-actor" % "2.3.6" % "provided"

libraryDependencies += "com.typesafe.akka" %% "akka-cluster" % "2.3.5" % "provided"
libraryDependencies += "com.typesafe.akka" %% "akka-cluster" % "2.3.6" % "provided"

libraryDependencies += "com.typesafe.akka" %% "akka-contrib" % "2.3.5" % "provided"
libraryDependencies += "com.typesafe.akka" %% "akka-contrib" % "2.3.6" % "provided"

libraryDependencies += "org.specs2" %% "specs2" % "2.4.1" % "test"

Expand Down

0 comments on commit 52697d6

Please sign in to comment.