grub-fork/project.clj

37 lines
1.8 KiB
Clojure
Raw Normal View History

2013-07-24 17:39:02 +00:00
(defproject grub "0.1.0-SNAPSHOT"
:description "FIXME: write description"
: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"]
2014-01-12 14:17:34 +00:00
[org.clojure/clojurescript "0.0-2138"]
2014-04-25 17:06:39 +00:00
[org.clojure/core.async "0.1.298.0-2a82a1-alpha"]
[http-kit "2.1.18"]
[compojure "1.1.6"]
[ring/ring-core "1.2.2" :exclusions [org.clojure/tools.reader]]
[ring/ring-devel "1.2.2" :exclusions [org.clojure/tools.reader]]
[hiccup "1.0.5"]
[prismatic/dommy "0.1.2"]
[com.novemberain/monger "1.7.0"]
[org.clojure/tools.cli "0.3.1"]
2014-04-25 17:06:39 +00:00
[clj-webdriver "0.6.1" :exclusions [org.clojure/core.cache]]]
:profiles {:dev {:dependencies []}
:uberjar {:aot :all}}
2014-01-12 14:17:34 +00:00
:min-lein-version "2.1.2"
2014-04-25 17:06:39 +00:00
:plugins [[lein-cljsbuild "1.0.0"]
[lein-ring "0.8.6"]]
2013-09-05 09:39:10 +00:00
:cljsbuild {:builds {:dev {:source-paths ["src/cljs"]
:compiler {:output-dir "out"
:output-to "public/js/grub_dev.js"
;:source-map "public/js/grub_dev.js.map"
2013-09-05 09:39:10 +00:00
:optimizations :whitespace
2013-09-30 18:59:55 +00:00
:pretty-print true}}
2013-09-05 09:39:10 +00:00
:prod {:source-paths ["src/cljs"]
:compiler {:output-to "public/js/grub.js"
2014-04-25 17:06:39 +00:00
:optimizations :advanced}}}}
:source-paths ["src/clj" "integration"]
2013-08-17 14:29:30 +00:00
:test-paths ["spec/clj"]
2013-07-24 18:38:14 +00:00
:ring {:handler grub.core/app}
2014-01-12 13:59:01 +00:00
:uberjar-name "grub-standalone.jar"
2013-07-24 18:38:14 +00:00
:main grub.core)