Snapshots

Snapshots are published to a repository in Bintray after every successful build on master. Add the following to your project build definition to resolve Alpakka snapshots:

Configure repository

sbt
resolvers += Resolver.bintrayRepo("akka", "snapshots")
Maven
<project>
...
  <repositories>
    <repository>
      <id>alpakka-snapshots</id>
      <name>Alpakka Snapshots</name>
      <url>https://dl.bintray.com/akka/snapshots</url>
    </repository>
  </repositories>
...
</project>
Gradle
repositories {
  maven {
    url  "https://dl.bintray.com/akka/snapshots"
  }
}

Documentation

The snapshot documentation is updated with every snapshot build.

Versions

Latest published snapshot version is bintray-badge

The snapshot repository is cleaned from time to time with no further notice. Check Bintray Alpakka files to see what versions are currently available.

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.