-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathproject.clj
45 lines (33 loc) · 1.67 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
;; Copyright © 2014, JUXT LTD.
(defproject bidi "2.1.6"
:description "Bidirectional URI routing"
:url "https://github.com/juxt/bidi"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
;; :pedantic? :abort
:dependencies [[prismatic/schema "1.1.7"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-doo "0.1.6"]]
:prep-tasks ["javac" "compile"]
:profiles {:provided {:dependencies [[ring/ring-core "1.5.0" :exclusions [org.clojure/clojure]]]}
:dev {:exclusions [[org.clojure/tools.reader]]
:resource-paths ["test-resources"]
;;:global-vars {*warn-on-reflection* true}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.9.293"]
[org.clojure/tools.reader "1.0.0-beta4"]
[ring/ring-mock "0.3.0"]
[compojure "1.6.0-beta2"]
[criterium "0.4.3"]
[org.mozilla/rhino "1.7.7.1"]]}}
:aliases {"deploy" ["do" "clean," "deploy" "clojars"]
"test-cljs" ["doo" "rhino" "test" "once"]}
:jar-exclusions [#"\.swp|\.swo|\.DS_Store"]
:lein-release {:deploy-via :shell
:shell ["lein" "deploy"]}
:doo {:paths {:rhino "lein run -m org.mozilla.javascript.tools.shell.Main"}}
:cljsbuild {:builds
{:test {:source-paths ["src" "test"]
:compiler {:output-to "target/unit-test.js"
:main 'bidi.runner
:optimizations :whitespace}}}})