is there an API to search projects on clojars?
@martinklepsch yes - see https://github.com/clojars/clojars-web/wiki/Data#json-search-results
oh, that’s excellent, thanks!
hello everyone but Im having issues on how to deploy my lib to clojars (this is my first lib in clojure so sorry if im missing something obvious) Ive generated my gpg key, but Im not sure on how associate it with my clojars account
@plins You don't associate GPG keys with Clojars. With Boot, you don't need GPG at all to deploy to Clojars.
With Leiningen, GPG is only used to sign JARs (optional) and to encrypt/decrypt your Clojars credentials locally.
See https://github.com/boot-clj/boot/wiki/Repository-Credentials-and-Deploying for using Boot to deploy to Clojars @plins
Leiningen has this comprehensive GPG guide https://github.com/technomancy/leiningen/blob/stable/doc/GPG.md
Leiningen instructions https://github.com/technomancy/leiningen/blob/stable/doc/TUTORIAL.md#publishing-libraries (to enter username/password each time -- else you can store them per the GPG instructions)
Thank sean, ive managed to upload it