Versions Compared

Key

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

...

get zip from jenkins build and extract localy (ie https://builds.apache.org/job/incubator-netbeans-r100-maven/ ) repository is generated according to a git tag to match a released version

do sign

Code Block
languagebash
themeMidnight
find . -name '*.nbm' -exec gpg --armor --output {}.asc --detach-sig {} \;

...


find . -name '*.xml' -exec gpg --armor --output {}.asc --detach-sig {} \;

...


find . -name '*.pom' -exec gpg --armor --output {}.asc --detach-sig {} \;

...


find . -name '*.sha1' -exec gpg --armor --output {}.asc --detach-sig {} \;

...


find . -name '*.md5' -exec gpg --armor --output {}.asc --detach-sig {} \;

...


find . -name '*.jar' -exec gpg --armor --output {}.asc --detach-sig {} \;



 test signing

find . -name '*.asc' -exec gpg --verify {} \;

...