项目
Commercial Support
Commercial support is provided by Typesafe <http://www.typesafe.com>
.
Akka is part of the Typesafe Reactive Platform <http://www.typesafe.com/platform>
.
Mailing List
Downloads
Source Code
Akka uses Git and is hosted at Github.
- Akka: clone the Akka repository from
http://github.com/akka/akka
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
@binVersion@/"">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::
resolvers += "Typesafe Snapshots" at "http://repo.akka.io/snapshots/"
Define the library dependencies with the timestamp as version. For example::
libraryDependencies += "com.typesafe.akka" % "akka-remote_@binVersion@" %
"2.1-20121016-001042"
maven definition of snapshot repository
Make sure that you add the repository to the maven repositories in pom.xml::
<repositories>
<repository>
<id>akka-snapshots</id>
<name>Akka Snapshots</name>
<url>http://repo.akka.io/snapshots/</url>
<layout>default</layout>
</repository>
</repositories>
Define the library dependencies with the timestamp as version. For example::
<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-remote_@binVersion@</artifactId>
<version>2.1-20121016-001042</version>
</dependency>
</dependencies>