I want to distribute a Clojure program. Do I need a JDK or can a JRE handle everything in Clojure?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You only need the user to have a JRE (v1.5 or above) Clojure programs can be compiled into a jar file. You don't have to use something like leiningen, but it's a lot easier. Check out this page on the Clojure.org site for how to compile and run a program. You can compile to a jar file from the REPL:
Here's how you would run a compile jar:
|
|||||||||||
|
|
You just need a JRE. https://github.com/technomancy/leiningen/blob/master/TUTORIAL.md explains in more detail, but I believe you just want an "Uberjar" which will contain all the dependencies that you need to distribute your application. |
|||
|
|