Snapshots

Snapshots are published to https://repo.akka.io/snapshots repository after every successful build on main. Add the following to your project build definition to resolve Alpakka snapshots:

Configure repository

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

Documentation

The snapshot documentation is updated with every snapshot build.

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.