hoplon

2026-02-02T14:43:54.041499Z

Does anyone have a favorite way to deploy to clojars in a deps.edn project? Im thinking perhaps lein for that purpose. Or maybe a standalone babashka deal

borkdude 2026-02-02T14:45:00.237579Z

the classic deps.edn way is to add a build.clj file and then call clj -T:build deploy. If you install the neil too , you just have to write:

neil add build
and it will gen a build.clj for you that you can then adapt to your needs

💡 1
borkdude 2026-02-02T14:45:10.114289Z

(https://github.com/babashka/neil)

borkdude 2026-02-02T14:45:28.324119Z

or you could copy/paste a build.clj from a previous project

2026-02-02T14:54:53.506909Z

Many thanks 🙏