forked from taoensso/sente
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
87 lines (76 loc) · 3.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
(defproject com.taoensso/sente "1.4.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure channel sockets library"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "Same as Clojure"}
:min-lein-version "2.3.3"
:global-vars {*warn-on-reflection* true
*assert* true}
:dependencies
[[org.clojure/clojure "1.5.1"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/tools.reader "0.8.16"]
[com.taoensso/encore "1.22.0"]
[com.taoensso/timbre "3.4.0"]]
:profiles
{;; :default [:base :system :user :provided :dev]
:server-jvm {:jvm-opts ^:replace ["-server"]}
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
:1.7 {:dependencies [[org.clojure/clojure "1.7.0-alpha3"]]}
:test {:dependencies [[com.cognitect/transit-clj "0.8.269"]
[com.cognitect/transit-cljs "0.8.205"]
[expectations "2.0.16"]
[org.clojure/test.check "0.7.0"]
;; [com.cemerick/double-check "0.5.7"]
]
:plugins [[lein-expectations "0.0.8"]
[lein-autoexpect "1.4.2"]]}
:provided {:dependencies [;; TODO 0.0-2850:
[org.clojure/clojurescript "0.0-2411"]]}
:dev
[:1.7 :test
{:plugins
[;;; These must be in :dev, Ref. https://github.com/lynaghk/cljx/issues/47:
[com.keminglabs/cljx "0.5.0"]
[lein-cljsbuild "1.0.3"]
[http-kit "2.1.19"]
[org.immutant/web "2.0.0-beta2"]
[lein-pprint "1.1.1"]
[lein-ancient "0.5.5"]
[com.cemerick/austin "0.1.4"]
[lein-expectations "0.0.8"]
[lein-autoexpect "1.2.2"]
[com.cemerick/clojurescript.test "0.3.1"]
[codox "0.8.10"]]}]}
:cljx
{:builds
[{:source-paths ["src" "test"] :rules :clj :output-path "target/classes"}
{:source-paths ["src" "test"] :rules :cljs :output-path "target/classes"}]}
:cljsbuild
{:test-commands {"node" ["node" :node-runner "target/main.js"]
"phantom" ["phantomjs" :runner "target/main.js"]}
:builds
[{:id :main
:source-paths ["src" "test" "target/classes"]
:compiler {:output-to "target/main.js"
:optimizations :advanced
:pretty-print false}}]}
:test-paths ["test" "src"]
:prep-tasks [["cljx" "once"] "javac" "compile"]
:codox {:language :clojure ; [:clojure :clojurescript] ; No support?
:sources ["target/classes"]
:src-linenum-anchor-prefix "L"
:src-dir-uri "http://github.com/ptaoussanis/encore/blob/master/src/"
:src-uri-mapping {#"target/classes"
#(.replaceFirst (str %) "(.cljs$|.clj$)" ".cljx")}}
:aliases
{"test-all" ["with-profile" "default:+1.6:+1.7" "expectations"]
"test-auto" ["with-profile" "+test" "autoexpect"]
"build-once" ["do" "cljx" "once," "cljsbuild" "once"]
"deploy-lib" ["do" "build-once," "deploy" "clojars," "install"]
"start-dev" ["with-profile" "+server-jvm" "repl" ":headless"]}
:repositories
{"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"})