forked from helpshift/mongrove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
24 lines (24 loc) · 1.29 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
(defproject com.tcgplayer/mongrove "0.2.2"
:description "An idiomatic Clojure wrapper for MongoDB java-driver 4.x"
:url "https://medium.com/helpshift-engineering"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:signing {:gpg-key "helpshift-clojars-admin"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.mongodb/mongodb-driver-sync "4.2.3"]
[org.clojure/tools.logging "1.1.0"]]
:repl-options {:init-ns mongrove.core}
:jvm-opts ^:replace ["-Duser.timezone=UTC"
"-Dloglevel=DEBUG"
"-Ddebuglogfile=debug.log"]
:profiles {:dev {:dependencies [[clj-time "0.15.2"]
[circleci/bond "0.3.1"]
[org.clojure/test.check "1.1.0"]
[com.gfredericks/test.chuck "0.2.10"]]}}
:plugins [[lein-codox "0.10.7"]
[lein-cloverage "1.1.2"]]
:test-selectors {:default [(fn [ns & _]
;; ns annotations
(not (#{"mongrove.transactions-test"} (str ns))))
(complement :cluster-tests)] ;; test-annotations
:cluster-tests :cluster-tests})