milkwood-clj/project.clj
Simon Brooke fffaf0cca0 Basically finished. Not capitalising initial words of sentences; not
printing output to an output file even if one is specified; not
honouring the help flag.
2013-11-09 00:39:20 +00:00

11 lines
455 B
Clojure

(defproject milkwood-clj "0.1.0-SNAPSHOT"
:description "Reimplementation of the Milkwood rule driven nonsense generator in Clojure"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/tools.cli "0.2.4"]]
:main milkwood-clj.core
:jvm-opts ["-Xss4m"]
:profiles {:uberjar {:aot :all}})