mw-cli/project.clj

18 lines
801 B
Clojure

(defproject mw-cli "0.1.6-SNAPSHOT"
:description "Command-line launcher for MicroWorld engine."
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.4.2"]
[org.clojure/tools.reader "1.3.2"]
[com.taoensso/timbre "4.10.0" :exclusions [org.clojure/tools.reader]]
[environ "1.2.0"]
[mw-engine "0.1.6-SNAPSHOT"]
[mw-parser "0.1.6-SNAPSHOT"]
[me.raynes/fs "1.4.6"]]
:main ^:skip-aot mw-cli.core
:target-path "target/%s"
:plugins [[lein-environ "1.2.0"]]
:profiles {:uberjar {:aot :all}})