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
upgrade your clojure CLI is the answer
ah that did it should have thought of that thank you