Project

Source Code

Pekko uses Git and is hosted at Github apache/pekko.

Releases Repository

All Pekko releases are published via Sonatype to Maven Central, see search.maven.org

Snapshots Repository

Snapshot builds are available at https://repository.apache.org/content/groups/snapshots/org/apache/pekko/. All Pekko modules that belong to the same build have the same version.

Warning

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

sbt definition of snapshot repository

Make sure that you add the repository to the sbt resolvers:

resolvers += "Apache Pekko Snapshots" at "https://repository.apache.org/content/groups/snapshots"

Define the library dependencies with the complete version (you can find the available versions here). For example:

libraryDependencies += "org.apache.pekko" %% "pekko-remote" % "0.0.0+...-SNAPSHOT"

Maven definition of snapshot repository

Make sure that you add the repository to the Maven repositories in pom.xml:

<repositories>
  <repository>
    <id>apache-pekko-snapshots</id>
    <url>https://repository.apache.org/content/groups/snapshots</url>
    <layout>default</layout>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Define the library dependencies with the timestamp as version. For example:

<dependencies>
  <dependency>
    <groupId>org.apache.pekko</groupId>
    <artifactId>pekko-remote_2.13</artifactId>
    <version>0.0.0+...-SNAPSHOT</version>
  </dependency>
</dependencies>