-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
36 lines (28 loc) · 1.43 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
31
32
33
34
35
36
(defproject wrench "0.3.3"
:description "Elegant project configuration for a more civilised age"
:url "https://github.com/otann/wrench"
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/tools.logging "0.5.0"]]
:plugins [[lein-cloverage "1.0.9"]]
:profiles {:uberjar {:aot :all}
:dev {:dependencies [[org.clojure/tools.namespace "0.2.11"]]
:plugins [[pjstadig/humane-test-output "0.8.2"]
[com.jakemccrary/lein-test-refresh "0.22.0"]
[com.taoensso/timbre "4.1.4"]]}}
;; Artifact deployment info
:scm {:name "git"
:url "https://github.com/otann/wrench"}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag"]
["deploy" "clojars"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]]
:pom-addition [:developers [:developer
[:name "Anton Chebotaev"]
[:url "http://otann.github.io"]
[:email "[email protected]"]
[:timezone "+1"]]])