-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
27 lines (27 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
(defproject com.benrady/specific "0.6.1-SNAPSHOT"
:url "https://github.com/benrady/specific"
:description "Generate mocks and other test doubles using clojure.spec"
:profiles {:dev {:plugins [[com.jakemccrary/lein-test-refresh "0.23.0"]]
:dependencies [[pjstadig/humane-test-output "0.8.1"]
[org.mockito/mockito-core "1.9.5"]
[cljito "0.2.1"]]
:injections [(require 'pjstadig.humane-test-output) (pjstadig.humane-test-output/activate!)]}
:1.8 {:dependencies [[org.clojure/clojure "1.8.0"]
[clojure-future-spec "1.9.0"]]}
:1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}}
:test-paths ["test"]
:dependencies [[org.clojure/test.check "0.9.0"]]
:license {:name "GNU Public License v2"
:url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}
:deploy-repositories [["snapshots" {:url "https://clojars.org/repo"
:username "benrady"}]
["releases" {:url "https://clojars.org/repo"
:username "benrady"}]]
:test-refresh {:growl false
:notify-on-success false
:quiet true
:stack-trace-depth 25
:changes-only false
:watch-dirs ["src" "test"]
:refresh-dirs ["src" "test"]})