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 Pekko Projection’s snapshots:

Configure repository

Maven
<project>
...
  <repositories>
    <repository>
        <id>snapshots-repo</id>
        <name>Sonatype snapshots</name>
        <url>https://repository.apache.org/content/groups/snapshots/</url>
    </repository>
  </repositories>
...
</project>
sbt
// sbt 1.9.0+
resolvers += Resolver.ApacheMavenSnapshotsRepo
// use the following if you are using an older version of sbt
resolvers += "apache-snapshot-repository" at "https://repository.apache.org/content/repositories/snapshots"
Gradle
repositories {
  maven {
    url  "https://repository.apache.org/content/groups/snapshots/"
  }
}

Documentation

The snapshot documentation is updated with every snapshot build.

Versions

The snapshot repository is cleaned from time to time with no further notice. Check Sonatype snapshots Pekko Projection files to see what versions are currently available.