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"}
|
2015-07-02 17:23:00 +00:00
|
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
2015-06-30 17:46:39 +00:00
|
|
|
[org.clojure/clojurescript "0.0-3308"]
|
2014-10-10 15:00:13 +00:00
|
|
|
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
|
2015-07-05 07:09:11 +00:00
|
|
|
[org.omcljs/om "0.8.8"]
|
2015-06-30 17:46:39 +00:00
|
|
|
[http-kit "2.1.19"]
|
|
|
|
[ring/ring-core "1.3.2" :exclusions [org.clojure/tools.reader]]
|
2014-04-25 17:06:39 +00:00
|
|
|
[hiccup "1.0.5"]
|
2014-01-12 15:18:00 +00:00
|
|
|
[org.clojure/tools.cli "0.3.1"]
|
2015-06-30 17:46:39 +00:00
|
|
|
[sablono "0.3.4"]
|
2014-08-13 18:37:17 +00:00
|
|
|
[cljs-uuid "0.0.4"]
|
2015-12-10 06:59:32 +00:00
|
|
|
[midje "1.8.2"]
|
2015-06-30 17:46:39 +00:00
|
|
|
[com.cognitect/transit-clj "0.8.275"]
|
2015-07-03 20:16:53 +00:00
|
|
|
[com.cognitect/transit-cljs "0.8.220"]
|
2015-12-10 21:35:15 +00:00
|
|
|
[com.datomic/datomic-pro "0.9.5344" :exclusions [com.fasterxml.jackson.core/jackson-annotations
|
|
|
|
org.apache.httpcomponents/httpclient]]
|
2015-12-10 06:59:32 +00:00
|
|
|
[clj-webdriver "0.7.2"]
|
|
|
|
[org.seleniumhq.selenium/selenium-java "2.47.0"]]
|
2015-12-10 21:35:15 +00:00
|
|
|
:repositories {"my.datomic.com" {:url "https://my.datomic.com/repo" :creds :gpg}}
|
|
|
|
:profiles {:uberjar {:aot :all}}
|
2014-01-12 14:17:34 +00:00
|
|
|
:min-lein-version "2.1.2"
|
2015-12-10 21:35:15 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.1"]]
|
2015-07-05 07:09:11 +00:00
|
|
|
:cljsbuild {:builds {:dev {:source-paths ["src/cljs" "src/cljc"]
|
|
|
|
:compiler {:output-dir "resources/public/js/out"
|
|
|
|
:output-to "resources/public/js/grub.js"
|
|
|
|
:optimizations :none
|
|
|
|
:source-map true}}
|
2015-07-04 19:59:17 +00:00
|
|
|
:prod {:source-paths ["src/cljs" "src/cljc"]
|
2015-07-05 07:09:11 +00:00
|
|
|
:compiler {:output-to "resources/public/js/grub.min.js"
|
|
|
|
:optimizations :advanced
|
|
|
|
:pretty-print false}}}}
|
2015-07-02 17:23:00 +00:00
|
|
|
:source-paths ["src/clj" "src/cljc" "target/classes"]
|
2014-09-26 17:51:23 +00:00
|
|
|
:test-paths ["src/test"]
|
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)
|