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.

The latest published snapshot version is SonatypeSnapshots-badge.

Configure repository

sbt
resolvers += "akka-http-snapshot-repository" at "https://oss.sonatype.org/content/repositories/snapshots"
Maven
<project>
...
  <repositories>
    <repository>
      <id>akka-http-snapshots</id>
      <name>Akka HTTP Snapshots</name>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
  </repositories>
...
</project>
Gradle
repositories {
  maven {
    url  "https://oss.sonatype.org/content/repositories/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.