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 master commit.
The latest published snapshot version is .
Configure repository
- sbt
-
resolvers += Resolver.bintrayRepo("akka", "snapshots")
- Maven
-
<project> ... <repositories> <repository> <id>akka-http-snapshots</id> <name>Akka HTTP Snapshots</name> <url>https://dl.bintray.com/akka/snapshots</url> </repository> </repositories> ... </project>
- Gradle
-
repositories { maven { url "https://dl.bintray.com/akka/snapshots" } }