9. Contributing

Welcome!

We follow the standard GitHub fork & pull approach to pull requests. Just fork the official repo, develop in a branch, and submit a PR!

For a more detailed description of our process, please refer to the CONTRIBUTING.md page on the github project.

Snapshots

Testing snapshot versions can help us find bugs before a release. We publish snapshot versions for every commit to the main branch.

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

Configure repository

sbt
resolvers += "Akka library snapshot repository".at("https://repo.akka.io/snapshots")
Maven
<project>
...
  <repositories>
    <repositories>
      <repository>
        <id>akka-repository</id>
        <name>Akka library snapshot repository</name>
        <url>https://repo.akka.io/snapshots</url>
      </repository>
    </repositories>
  </repositories>
...
</project>
Gradle
repositories {
  maven {
    url  "https://repo.akka.io/snapshots"
  }
}
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.