Project

Commercial Support

Commercial support is provided by Akka.

Sponsors

Akka is the company behind Akka product, Scala Programming Language, Play Web Framework, Lagom, sbt and many other open source and source available projects. Learn more at akka.io.

Akka Discuss Forums

Akka Discuss Forums

Source Code

Akka uses Git and is hosted at Github akka/akka.

Releases Repository

Note

The Akka dependencies are available from Akka’s secure library repository. To access them you need to use a secure, tokenized URL as specified at https://account.akka.io/token.

Snapshots Repository

Snapshot builds are available from the repository at https://repo.akka.io/snapshots. All Akka modules that belong to the same build have the same version.

Warning

The use of Akka SNAPSHOTs, nightlies and milestone releases is discouraged unless you know what you are doing.

sbt definition of snapshot repository

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

resolvers += "Akka library snapshot repository".at("https://repo.akka.io/snapshots")

Define the library dependencies with the complete version. For example:

libraryDependencies += "com.typesafe.akka" % "akka-cluster_2.13" % "2.9.0+72-53943d99-SNAPSHOT"

Maven definition of snapshot repository

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

<repositories>
  <repositories>
    <repository>
      <id>akka-repository</id>
      <name>Akka library snapshot repository</name>
      <url>https://repo.akka.io/snapshots</url>
    </repository>
  </repositories>
</repositories>

Define the library dependencies with the complete version. For example:

<dependencies>
  <dependency>
    <groupId>com.typesafe.akka</groupId>
    <artifactId>akka-cluster_2.13</artifactId>
    <version>2.9.0+72-53943d99-SNAPSHOT</version>
  </dependency>
</dependencies>
Found an error in this documentation? The source code for this page can be found here. Please feel free to edit and contribute a pull request.