clojars

http://clojars.org discussion and “support”, see http://status.clojars.org for status.
2018-04-19T19:09:49.000220Z

what's the recommended way of creating non-canonical forks of a repo? I ended up doing something like this:

lein jar
lein deploy clojars org.clojars.rymndhng/yaml 1.0.8 target/yaml-1.0.8.jar pom.xml
I had to modify the pom.xml to use my personal clojars group as well. Is there a way that's more streamlined?

2018-04-19T19:15:31.000356Z

For a non-lein based project, not that I’m aware of. For a lein-based one, you have to still edit the project.clj, but can just lein deploy clojars after that, so it is slightly simpler

2018-04-19T19:27:30.000028Z

yeah it's a lein based project! i considered changing project.clj. I wanted to keep my fork on github as close as possible to the upstream one, but thanks!