-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
33 lines (33 loc) · 1.27 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
(defproject b-social/wiremock-wrapper "0.2.9-SNAPSHOT"
:description "A clojure wrapper library around Java wiremock library"
:url "https://github.com/b-social/wiremock-wrapper"
:license {:name "The MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.10.0"]
[http-kit "2.3.0"]
[freeport "1.0.0"]
[b-social/jason "0.1.5"]
[com.github.tomakehurst/wiremock "2.27.2"]
[org.clojure/tools.logging "1.2.4"]
[medley "1.1.0"]]
:plugins [[lein-eftest "0.5.3"]
[lein-changelog "0.3.2"]
[lein-shell "0.5.0"]
[lein-codox "0.10.7"]]
:deploy-repositories
{"releases" {:url "https://repo.clojars.org" :creds :gpg}}
:repl-options {:init-ns wiremock-wrapper}
:release-tasks
[["shell" "git" "diff" "--exit-code"]
["change" "version" "leiningen.release/bump-version" "release"]
["codox"]
["changelog" "release"]
["shell" "sed" "-E" "-i" "" "s/\"[0-9]+\\.[0-9]+\\.[0-9]+\"/\"${:version}\"/g" "README.md"]
["shell" "git" "add" "."]
["vcs" "commit"]
["vcs" "tag"]
["deploy"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "tag"]
["vcs" "push"]])