From 6e0713d8a62c234e66f673d24a2ceed4b86fb886 Mon Sep 17 00:00:00 2001 From: Amith Koujalgi Date: Tue, 19 Dec 2023 15:58:03 +0530 Subject: [PATCH] clean up --- docs/publishing/readme.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/docs/publishing/readme.md b/docs/publishing/readme.md index 2e081cc..91a2a1f 100644 --- a/docs/publishing/readme.md +++ b/docs/publishing/readme.md @@ -1,3 +1,6 @@ +Understanding publishing: +https://dzone.com/articles/how-to-publish-artifacts-to-maven-central + GPG Signing setup ## GPG Setup @@ -7,8 +10,16 @@ https://central.sonatype.org/publish/requirements/gpg/#listing-keys ### Steps - Create key: `gpg --gen-key` and then list keys to verify: `gpg --list-keys` -- Distributing Your Public - Key: `gpg --keyserver keyserver.ubuntu.com --send-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98` +- Distributing Your Public Key: + +``` +gpg --keyserver pool.sks-keyservers.net --send-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98 +gpg --keyserver pgp.key-server.io --send-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98 +gpg --keyserver keyserver.ubuntu.com --send-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98 +gpg --keyserver pgp.mit.edu --send-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98 +gpg --keyserver keys.gnupg.net --send-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98 +``` + - Now other people can import your public key from the key server to their local machines: `gpg --keyserver keyserver.ubuntu.com --recv-keys CA925CD6C9E8D064FF05B4728190C4130ABA0F98`