clojars

http://clojars.org discussion and “support”, see http://status.clojars.org for status.
rwstauner 2021-02-26T02:14:37.017500Z

re: > Also, if this is a new group you are creating, I'd recommend using `com.xn--lgc` instead. We're going to soon move to requiring new groups to be reverse-domain based and verified, so doing so now would put you ahead of the game. what is the recommendation for a new project? com.foo.project/project or com.foo/project ?

seancorfield 2021-02-26T02:27:28.018400Z

if it's a company project, com.companyname/the-project if it's a personal project, I'd probably lean to com.github.username/the-project given this guidance.

seancorfield 2021-02-26T02:28:06.019Z

Or if you have your own domain that could be easily verified, something like org.mysite/the-project

👍 1
seancorfield 2021-02-26T02:31:26.020Z

And remember that your namespaces don't have to follow the group/artifact but your top-level namespace segment should be globally unique if you plan to publish it.

aratare 2021-02-26T10:13:32.020600Z

Hi there. I'm currently struggling with trying to upload my JAR to Clojars. However I think there's something wanky with how I'm setting up GPG. So I've created a key pair, published it to openkey and signed credentials.clj with it. Is there an additional step where I have to upload the public key to Clojars itself? Thanks in advance.

aratare 2021-02-26T10:16:30.020700Z

2021-02-26T13:33:23.023400Z

@clj149 as far as com.foo.project/project vs com.foo/project goes - that's up to you; both will be supported from a group verification perspective. I would personally only do com.foo.project as a group if the project was an umbrella for multiple libraries: com.foo.quibble/routing, com.foo.quibble/rendering, etc.

👍 1
2021-02-26T13:39:46.023500Z

Hi @rextruong! I checked the logs, and it looks like the deploy is failing because it thinks your deploy token is incorrect. I believe the issue is you are using your email address instead of your username - deploying with an email address isn't supported. Let me know if you are still having issues after that change.

aratare 2021-02-26T13:59:10.023700Z

Hi @tcrawley. It's working perfectly now! Thank you for making my day 😄

2021-02-26T13:59:25.023900Z

My pleasure! Glad we figured it out.

rwstauner 2021-02-26T14:33:58.024400Z

Thanks, that sounds good to me.