tools-build

Lycheese 2021-11-29T11:36:01.283600Z

I'm currently trying to get building uberjars with tools.build to work but the documentation for adding it as a dependency doesn't seem to work for me. When adding io.github.clojure/tools.build {:git/tag "v0.6.8" :git/sha "d79ae84"} to my deps.edn I'm getting Error building classpath. Library io.github.clojure/tools.build has missing :sha in coordinate. (on running clj -A:build) which I tried to fix by replacing :git/sha with :sha and using the non-shortened sha. But this leads to a null-pointer exception. Any input on how to fix this? clojure version: Clojure CLI version 1.10.3.839

borkdude 2021-11-29T11:38:06.284500Z

upgrade your clojure CLI is the answer

Lycheese 2021-11-29T11:41:54.284600Z

ah that did it should have thought of that thank you