-
Notifications
You must be signed in to change notification settings - Fork 2
/
project.clj
37 lines (31 loc) · 1.51 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
37
(defproject ex-parent "0.4.2-SNAPSHOT"
:description "In which we deal with exceptions the clojure way"
:license {:name "MIT/ISC"}
:url "https://github.com/exoscale/ex"
:plugins [[lein-sub "0.3.0"]
[exoscale/lein-replace "0.1.1"]]
:deploy-repositories [["releases" :clojars] ["snapshots" :clojars]]
:pedantic? :warn
:managed-dependencies [[org.clojure/clojure "1.10.1"]
[manifold "0.1.8"]
[cc.qbits/auspex "0.1.0-alpha2"]
[exoscale/ex :version]
[exoscale/ex-manifold :version]
[exoscale/ex-auspex :version]
[exoscale/ex-http :version]]
:profiles {:dev {:plugins [[lein-cljfmt "0.6.7"]]}}
:sub ["modules/ex"
"modules/ex-manifold"
"modules/ex-auspex"
"modules/ex-http"]
:release-tasks [["vcs" "assert-committed"]
["sub" "change" "version" "leiningen.release/bump-version" "release"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["sub" "install"]
["sub" "deploy" "clojars"]
["sub" "change" "version" "leiningen.release/bump-version"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])