.. _support: `Commercial Support `__ ============================================ Commercial support is provided by `Typesafe `_. Akka is now part of the `Typesafe Stack `_. `Mailing List `_ ========================================================== `Akka User Google Group `_ `Akka Developer Google Group `_ `Downloads `_ ======================================== ``_ `Source Code `_ ============================================== Akka uses Git and is hosted at `Github `_. * Akka: clone the Akka repository from ``_ `Releases Repository `_ ====================================================== The Akka Maven repository can be found at http://repo.akka.io/releases/. Typesafe provides http://repo.typesafe.com/typesafe/releases/ that proxies several other repositories, including akka.io. It is convenient to use the Typesafe repository, since it includes all external dependencies of Akka. It is a "best-effort" service, and if it is unavailable you may need to use the underlying repositories directly. * http://repo.akka.io/releases/ * http://repository.codehaus.org/ * http://guiceyfruit.googlecode.com/svn/repo/releases/ * http://repository.jboss.org/nexus/content/groups/public/ * http://download.java.net/maven/2/ * http://oss.sonatype.org/content/repositories/releases/ * http://download.java.net/maven/glassfish/ * http://databinder.net/repo/ `Snapshots Repository `_ ======================================================== Nightly builds are available in http://repo.akka.io/snapshots/ and proxied through http://repo.typesafe.com/typesafe/snapshots/ as both ``SNAPSHOT`` and timestamped versions. For timestamped versions, pick a timestamp from http://repo.typesafe.com/typesafe/snapshots/com/typesafe/akka/akka-actor/. All Akka modules that belong to the same build have the same timestamp. Make sure that you add the repository to the sbt resolvers or maven repositories:: resolvers += "Typesafe Snapshots" at "http://repo.typesafe.com/typesafe/snapshots/" Define the library dependencies with the timestamp as version. For example:: libraryDependencies += "com.typesafe.akka" % "akka-actor" % "2.0-20111215-000549" libraryDependencies += "com.typesafe.akka" % "akka-remote" % "2.0-20111215-000549"