clojars

http://clojars.org discussion and “support”, see http://status.clojars.org for status.
2016-06-07T16:51:35.000018Z

Hi, I am having trouble deploying a library to clojars. When I run lein deploy clojars I am asked to provide gpg key for signing, but I do not want to sign the package nor can find any information saying I must sign the package. What am I doing wrong?

2016-06-07T17:44:35.000019Z

@vipaca: by default, lein tries to sign releases. You can disable that by setting :sign-releases false in project.clj. Give me a sec and I'll give an example

2016-06-07T17:46:09.000020Z

:deploy-repositories [["clojars" {:url "<https://clojars.org/repo/>"
                                                     :sign-releases false}]]

2016-06-07T17:46:18.000021Z

try that

2016-06-07T18:09:45.000022Z

Awesome this worked!

2016-06-07T18:10:08.000023Z

I did add it to my profile.clj instead though.

{:user
      {:deploy-repositories [["clojars" {:url "<https://clojars.org/repo/>"
                                     :sign-releases false}]]}}

2016-06-07T18:20:26.000025Z

good deal