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"]
|
2013-07-28 06:24:01 +00:00
|
|
|
[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"]
|
2013-07-26 20:47:32 +00:00
|
|
|
[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"]
|
2013-08-18 08:22:08 +00:00
|
|
|
[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"
|
2013-09-29 19:36:17 +00:00
|
|
|
;: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}}}}
|
2013-08-18 08:22:08 +00:00
|
|
|
: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)
|