AKKA 2.3.6 Scala 文档

项目

Commercial Support

Commercial support is provided by Typesafe . Akka is part of the Typesafe Reactive Platform .

Mailing List

Akka User Google Group

Akka Developer Google Group

Downloads

http://akka.io/downloads

Source Code

Akka uses Git and is hosted at Github.

Releases Repository

All Akka releases are published via Sonatype to Maven Central, see search.maven.org

Snapshots Repository

Nightly builds are available in http://repo.akka.io/snapshots/ as both SNAPSHOT and timestamped versions.

For timestamped versions, pick a timestamp from http://repo.akka.io/snapshots/com/typesafe/akka/akka-actor_@binVersion@/. All Akka modules that belong to the same build have the same timestamp.

sbt definition of snapshot repository

Make sure that you add the repository to the sbt resolvers::

  1. resolvers += "Typesafe Snapshots" at "http://repo.akka.io/snapshots/"

Define the library dependencies with the timestamp as version. For example::

  1. libraryDependencies += "com.typesafe.akka" % "akka-remote_@binVersion@" %
  2. "2.1-20121016-001042"
maven definition of snapshot repository

Make sure that you add the repository to the maven repositories in pom.xml::

  1. <repositories>
  2. <repository>
  3. <id>akka-snapshots</id>
  4. <name>Akka Snapshots</name>
  5. <url>http://repo.akka.io/snapshots/</url>
  6. <layout>default</layout>
  7. </repository>
  8. </repositories>

Define the library dependencies with the timestamp as version. For example::

  1. <dependencies>
  2. <dependency>
  3. <groupId>com.typesafe.akka</groupId>
  4. <artifactId>akka-remote_@binVersion@</artifactId>
  5. <version>2.1-20121016-001042</version>
  6. </dependency>
  7. </dependencies>