Fork me on GitHub
#clojars
<
2021-02-26
>
rwstauner02:02:37

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 ?

seancorfield02:02:28

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.

seancorfield02:02:06

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

👍 3
seancorfield02:02:26

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.

aratare10:02:32

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.

tcrawley13:02:46

Hi @U013F1Q1R7G! 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.

aratare13:02:10

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

tcrawley13:02:25

My pleasure! Glad we figured it out.

tcrawley13:02:23

@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.

👍 3
rwstauner14:02:58

Thanks, that sounds good to me.