akka-docs/src/main/paradox/project/links.md
Commercial support is provided by Akka.
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 uses Git and is hosted at Github akka/akka-core.
@@@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. @@@
Snapshot builds are available from the repository at https://repo.akka.io/TOKEN/secure/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.
@@@
Make sure that you add the repository to the sbt resolvers:
resolvers += "Akka library snapshot repository".at("https://repo.akka.io/TOKEN/secure/snapshots")
Define the library dependencies with the complete version. For example:
@@@vars
libraryDependencies += "com.typesafe.akka" % "akka-cluster_$scala.binary.version$" % "2.9.0+72-53943d99-SNAPSHOT"
@@@
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/TOKEN/secure/snapshots</url>
</repository>
</repositories>
</repositories>
Define the library dependencies with the complete version. For example:
@@@vars
<dependencies>
<dependency>
<groupId>com.typesafe.akka</groupId>
<artifactId>akka-cluster_$scala.binary.version$</artifactId>
<version>2.9.0+72-53943d99-SNAPSHOT</version>
</dependency>
</dependencies>
@@@