Versions Compared

Key

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

...

No Format
gpg --import KEYS

trust the KEY "lionel". (If it is signed by another key, you need to trust that key as well)

No Format
gpg --edit-key lionel
trust
5
y
quit

Download griffin-0.2.0-incubating-source-release.zip.asc from the dist page.

...

No Format
gpg --verify griffin-0.2.0-incubating-source-release.zip.asc griffin-0.2.0-incubating-source-release.zip
 
// do the same thing to download and verify griffin-0.2.0-incubating.pom with griffin-0.2.0-incubating.pom.asc
gpg --verify griffin-0.2.0-incubating.pom.asc griffin-0.2.0-incubating.pom

Verify hash files

Download griffin-0.2.0-incubating-source-release.zip.sha1 from the dist page.

on linux:

No Format
for f in *.sha1; do echo "$(cat $f) ${f/.sha1/}"; done | sha1sum -c

on mac:

No Format
for f in *.sha1; do echo "$(cat $f)  ${f/.sha1/}"; done | shasum -c

Check the filelist inside

...