Download
Apache Pekko releases are available under the Apache License, Version 2.0. See the NOTICE file contained in each release artifact for applicable copyright attribution notices.
To ensure that you have downloaded the true release, you should verify the integrity of the files using the signatures and checksums available from this page.
Jars
We publish jars to Maven Central with the groupId org.apache.pekko
(list). These jars relate to the source downloads you find linked below.
Pekko Core
- apache-pekko-1.0.2-incubating-src-20231115.tgz signature: (asc) checksum: (sha512)
Pekko HTTP
- apache-pekko-http-1.0.0-incubating-src-20230726.tgz signature: (asc) checksum: (sha512)
Pekko gRPC
- apache-pekko-grpc-1.0.1-incubating-src-20231005.tgz signature: (asc) checksum: (sha512)
Pekko Management
- apache-pekko-management-1.0.0-incubating-src-20230805.tgz signature: (asc) checksum: (sha512)
Pekko Connectors
- apache-pekko-connectors-1.0.1-incubating-src-20231028.tgz signature: (asc) checksum: (sha512)
Pekko Connectors Kafka
- apache-pekko-connectors-kafka-1.0.0-incubating-src-20230726.tgz signature: (asc) checksum: (sha512)
Pekko Persistence Cassandra
- apache-pekko-persistence-cassandra-1.0.0-incubating-src-20230916.tgz signature: (asc) checksum: (sha512)
Pekko Persistence DynamoDB
- apache-pekko-persistence-dynamodb-1.0.0-incubating-src-20231110.tgz signature: (asc) checksum: (sha512)
Pekko Persistence JDBC
- apache-pekko-persistence-jdbc-1.0.0-incubating-src-20230829.tgz signature: (asc) checksum: (sha512)
Pekko Projection
- apache-pekko-projection-1.0.0-incubating-src-20231012.tgz signature: (asc) checksum: (sha512)
Pekko SBT Paradox
- apache-pekko-sbt-paradox-1.0.0-incubating-src-20230819.tgz signature: (asc) checksum: (sha512)
Archives
Older releases can be found at https://archive.apache.org/dist/incubator/pekko/
Verifying Downloads
It is highly recommended that you verify the files that you download.
We provide SHA digest files for all the files that we host on the download site. These files are named after the files they relate to but have .sha512
extensions.
We also provide PGP signature files that can be verified using PGP or GPG. These files are named after the files they relate to but have .asc
.
To verify the SHA digests, use:
find . -name "*.sha512" -type f -execdir sha512sum -c {} \;
To verify the PGP signatures, you will need to get the KEYS file. This will be in the source archive or can be fetched from https://github.com/apache/incubator-pekko/blob/main/KEYS.
gpg --import KEYS
To verify the download files, run:
find . -name "*.asc" -exec gpg --no-secmem-warning --verify {} \;