Snapshots

Snapshots are published to the Apache Snapshot repository every night.

Warning

The use of Pekko SNAPSHOTs, nightlies and milestone releases is discouraged unless you know what you are doing.

Add the following to your project build definition to resolve Apache Pekko Persistence JDBC’s snapshots:

Configure repository

Maven
<project>
...
  <repositories>
    <repository>
        <id>snapshots-repo</id>
        <name>Apache snapshots</name>
        <url>https://repository.apache.org/content/groups/snapshots</url>
    </repository>
  </repositories>
...
</project>
sbt (1.9.0 or later)
resolvers += Resolver.ApacheMavenSnapshotsRepo
sbt (earlier than 1.9.0)
resolvers += "Apache Nexus Snapshots".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

Latest published snapshot version is snapshots

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