forked from oliyh/martian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
20 lines (20 loc) · 1.04 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject com.github.oliyh/martian-suite "0.1.31-SNAPSHOT"
:description "Client routing for Swagger APIs"
:url "https://github.com/oliyh/martian"
:license {:name "The MIT License"
:url "http://opensource.org/licenses/MIT"}
:plugins [[lein-modules "0.3.11"]]
:profiles {:test {:modules {:subprocess "lein"}}}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["modules" "change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["modules" "deploy" "clojars"]
["change" "version" "leiningen.release/bump-version"]
["modules" "change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]]
:aliases {"test" ["modules" "do" "test," "install"]
"install" ["do" ["modules" "install"]]
"deploy" ["do" ["modules" "deploy" "clojars"]]})