Snapshots

Snapshots are published to the Sonatype Snapshot repository after every successful build on master. Add the following to your project build definition to resolve Alpakka Kafka connector snapshots:

Configure repository

Maven
<project>
...
  <repositories>
    <repository>
        <id>snapshots-repo</id>
        <name>Sonatype snapshots</name>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </repository>
  </repositories>
...
</project>
sbt
resolvers += Resolver.sonatypeRepo("snapshots")
Gradle
repositories {
  maven {
    url  "https://oss.sonatype.org/content/repositories/snapshots"
  }
}

Documentation

The snapshot documentation is updated with every snapshot build.

Versions

Latest published snapshot version is snapshots-badge

The snapshot repository is cleaned from time to time with no further notice. Check Sonatype snapshots Alpakka Kafka 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.