Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

First, open the core folder (core/{version}/{rc}).

Check signatures and checksums


Verify the signature

If the output says "public key not found", follow the instructions in this guide: Validate a release for the first time

Code Block
languagebash
titleVerify signature
gpg --verify apache-streampipes-{current-full-version}-incubating-source-release.zip.asc apache-streampipes-{current-full-version}-incubating-source-release.zip

# example
gpg --verify apache-streampipes-0.68.0-incubating-source-release.zip.asc apache-streampipes-0.6869.0-incubating-source-release.zip

...

Code Block
titleUnzip
unzip apache-streampipes-{current-full-version}-incubating-source-release.zip
cd apache-streampipes-{current-full-version}-incubating/

# example:
unzip apache-streampipes-0.68.0-incubating-source-release.zip

cd apache-streampipes-0.68.0-incubating/

...

Code Block
titleBuild Maven
# cdin download-dir/apache-streampipes-#.##.#-incubating/ directory
mvn clean package

This build should be successful.

...