Fork me on GitHub
#off-topic
<
2023-04-16
>
bherrmann15:04:34

A co-worker with osx has a broken brew install. Where can I find the clojure.jar binary (1.11.1 perhaps) that they can use with java8 to run clojure code? $ java -jar clojure.jar src/foo.clj

appleinc 2
Alex Miller (Clojure team)15:04:16

there is no such single jar, you need at a minimum, clojure, spec.alpha, and core.specs.alpha

Alex Miller (Clojure team)15:04:45

you can build one yourself from the clojure repo though using the instructions in the https://github.com/clojure/clojure readme. • mvn -Plocal -Dmaven.test.skip=true package

Alex Miller (Clojure team)15:04:58

that will emit a clojure.jar that works the way you describe above