-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
25 lines (22 loc) · 1.2 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
(defproject nubank/midje-nrepl "1.2.0-SNAPSHOT"
:description "nREPL middleware to interact with Midje"
:url "https://github.com/nubank/midje-nrepl"
:license {:name "Apache License, Version 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:repositories [["central" {:url "https://repo1.maven.org/maven2/" :snapshots false}]
["clojars" {:url "https://clojars.org/repo/"
:creds :gpg}]]
:deploy-repositories [["releases" :clojars]
["snapshots" :clojars]]
:dependencies [[org.clojure/clojure "1.9.0"]
[cider/orchard "0.4.0"]
[rewrite-clj "0.6.0"]]
:profiles {:dev {:dependencies [[diehard "0.7.2"]
[midje "1.9.4"]
[nubank/matcher-combinators "0.6.1"]]
:plugins [[lein-midje "3.2.1"]]}
:provided {:dependencies [[cider/cider-nrepl "0.20.0"]
[nrepl "0.5.3"]
[refactor-nrepl "2.4.0"]
[leiningen-core "2.8.3"]]}}
:test-paths ["integration" "test"])