grub-fork/project.clj

37 lines
1.7 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-01-12 12:59:43 +00:00
[org.clojure/core.async "0.1.267.0-0d7780-alpha"]
[http-kit "2.1.8"]
2013-07-24 17:39:02 +00:00
[compojure "1.1.5"]
[ring/ring-devel "1.2.0"]
2013-07-24 18:38:14 +00:00
[ring/ring-core "1.2.0"]
[hiccup "1.0.4"]
[prismatic/dommy "0.1.1"]
2014-01-12 13:59:01 +00:00
[com.novemberain/monger "1.5.0"]
[org.clojure/tools.cli "0.3.1"]]
2013-08-17 14:29:30 +00:00
:profiles {:dev {:dependencies [[speclj "2.5.0"]
[clj-webdriver "0.6.0"]]}}
2014-01-12 14:17:34 +00:00
:min-lein-version "2.1.2"
:plugins [[lein-cljsbuild "1.0.1"]
2013-08-17 14:29:30 +00:00
[lein-ring "0.8.6"]
2013-09-05 09:39:10 +00:00
[speclj "2.5.0"]]
: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"
:optimizations :simple}}}}
: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)