forked from apa512/clj-rethinkdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
30 lines (30 loc) · 1.5 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
(defproject com.apa512/rethinkdb "0.15.23"
:description "RethinkDB client"
:url "http://github.com/apa512/clj-rethinkdb"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:codox {:metadata {:doc/format :markdown}
:source-uri "https://github.com/apa512/clj-rethinkdb/blob/master/{filepath}#L{line}"}
:global-vars {*warn-on-reflection* true}
:plugins [[lein-codox "0.9.5"]
[test2junit "1.1.2"]
[lein-cljsbuild "1.1.3"]]
:test2junit-output-dir ~(or (System/getenv "CIRCLE_TEST_REPORTS") "target/test2junit")
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.48" :scope "provided"]
[org.clojure/core.async "0.2.374"]
[org.clojure/tools.logging "0.3.1"]
[aleph "0.4.1"]
[gloss "0.2.5"]
[cheshire "5.6.1"]
[rethinkdb-protobuf "2.2.0.1"]
[com.google.protobuf/protobuf-java "3.0.0-alpha-3.1"]
[clj-time "0.11.0"]]
:profiles {:dev {:resource-paths ["test-resources"]
:dependencies [[ch.qos.logback/logback-classic "1.1.7"]]}}
:cljsbuild {:builds [{:source-paths ["src"]
:compiler {:output-to "target/clj-rethinkdb.js"
:optimizations :whitespace}}]}
:jvm-opts ["-Xmx512m"]
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]])