How do I set JVM options like -server
when I launch Clojure using Leiningen?
Looking at the sample.project.clj file on the github repository, It looks like you can pass JVM arguments using the :jvm-opts
keyword. For Example:
:jvm-opts ["-Xmx1g" "-server"]