diff --git a/akka-docs/dev/building-akka.rst b/akka-docs/dev/building-akka.rst index 3e46a2698e..a9db8fe7d2 100644 --- a/akka-docs/dev/building-akka.rst +++ b/akka-docs/dev/building-akka.rst @@ -128,7 +128,7 @@ Dependencies You can look at the Ivy dependency resolution information that is created on ``sbt update`` and found in ``~/.ivy2/cache``. For example, the -``.ivy2/cache/se.scalablesolutions.akka-akka-cluster-compile.xml`` file contains +``~/.ivy2/cache/com.typesafe.akka-akka-remote-compile.xml`` file contains the resolution information for the akka-cluster module compile dependencies. If you open this file in a web browser you will get an easy to navigate view of dependencies. diff --git a/akka-docs/intro/deployment-scenarios.rst b/akka-docs/intro/deployment-scenarios.rst index 94047f242c..829d93829e 100644 --- a/akka-docs/intro/deployment-scenarios.rst +++ b/akka-docs/intro/deployment-scenarios.rst @@ -54,7 +54,7 @@ To use the plugin, first add a plugin definition to your sbt project by creating resolvers += Classpaths.typesafeResolver - addSbtPlugin("se.scalablesolutions.akka" % "akka-sbt-plugin" % "2.0-SNAPSHOT") + addSbtPlugin("com.typesafe.akka" % "akka-sbt-plugin" % "2.0-SNAPSHOT") Then use the AkkaKernelPlugin settings. In a 'light' configuration (build.sbt):: @@ -75,7 +75,7 @@ Or in a 'full' configuration (Build.scala). For example:: version := "0.1", scalaVersion := "2.9.1" resolvers += "Typesafe Repo" at "http://repo.typesafe.com/typesafe/releases/", - libraryDependencies += "se.scalablesolutions.akka" % "akka-kernel" % "2.0-SNAPSHOT" + libraryDependencies += "com.typesafe.akka" % "akka-kernel" % "2.0-SNAPSHOT" ) ) } diff --git a/akka-docs/intro/getting-started-first-java.rst b/akka-docs/intro/getting-started-first-java.rst index be79581416..ee890d723d 100644 --- a/akka-docs/intro/getting-started-first-java.rst +++ b/akka-docs/intro/getting-started-first-java.rst @@ -180,7 +180,7 @@ It should now look something like this: - se.scalablesolutions.akka + com.typesafe.akka akka-actor 2.0-SNAPSHOT diff --git a/akka-docs/intro/getting-started-first-scala.rst b/akka-docs/intro/getting-started-first-scala.rst index 563ab68f83..91a730819f 100644 --- a/akka-docs/intro/getting-started-first-scala.rst +++ b/akka-docs/intro/getting-started-first-scala.rst @@ -192,7 +192,7 @@ in the directory you want to create your project in:: resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/" - libraryDependencies += "se.scalablesolutions.akka" % "akka-actor" % "2.0-SNAPSHOT" + libraryDependencies += "com.typesafe.akka" % "akka-actor" % "2.0-SNAPSHOT" Create a directory ``src/main/scala`` in which you will store the Scala source files. @@ -202,11 +202,11 @@ modules beyond ``akka-actor``, you can add these as ``libraryDependencies`` in ``build.sbt``. Note that there must be a blank line between each. Here is an example adding ``akka-remote`` and ``akka-stm``:: - libraryDependencies += "se.scalablesolutions.akka" % "akka-actor" % "2.0-SNAPSHOT" + libraryDependencies += "com.typesafe.akka" % "akka-actor" % "2.0-SNAPSHOT" - libraryDependencies += "se.scalablesolutions.akka" % "akka-remote" % "2.0-SNAPSHOT" + libraryDependencies += "com.typesafe.akka" % "akka-remote" % "2.0-SNAPSHOT" - libraryDependencies += "se.scalablesolutions.akka" % "akka-stm" % "2.0-SNAPSHOT" + libraryDependencies += "com.typesafe.akka" % "akka-stm" % "2.0-SNAPSHOT" So, now we are all set. diff --git a/akka-docs/intro/getting-started.rst b/akka-docs/intro/getting-started.rst index 85d6663933..31d579f3ed 100644 --- a/akka-docs/intro/getting-started.rst +++ b/akka-docs/intro/getting-started.rst @@ -117,7 +117,7 @@ Summary of the essential parts for using Akka with Maven: .. code-block:: xml - se.scalablesolutions.akka + com.typesafe.akka akka-actor 2.0-SNAPSHOT @@ -145,7 +145,7 @@ SBT installation instructions on `https://github.com/harrah/xsbt/wiki/Setup - +