printing output to an output file even if one is specified; not honouring the help flag.
11 lines
455 B
Clojure
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}})
|