-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
19 lines (19 loc) · 900 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.balloneij/slouch "0.1.0"
:description "An idiomatic Clojure interface to Apache CouchDB"
:url "https://github.com/balloneij/slouch"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.11.1"]
[org.clojure/core.async "1.6.681"]
[com.taoensso/timbre "6.1.0"]
[org.clojure/core.cache "1.0.225"]
[clojure.java-time "1.2.0"]
[clj-http "3.12.3"]
[cheshire "5.11.0"]]
:global-vars {*warn-on-reflection* true}
:repl-options {:init-ns slouch.api}
:test-selectors {:default #(not= % :ignore)
:ignore :ignore
:integration :integration
:unit #(not-any? % #{:integration :ignore})
:all (constantly true)})