milkwood-clj/project.clj
Simon Brooke 68fafdab99 OK, there's a bug on the analyse side and I think it's in merge-rules. All
the rules that ought to be being generated are being generated, but the rule
tree returned by analyse-tokens is incomplete. I'm not yet certain what is
wrong.
2013-11-08 12:58:46 +00:00

10 lines
406 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"]]
:main milkwood-clj.core
:jvm-opts ["-Xss4m"]
:profiles {:uberjar {:aot :all}})