-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
41 lines (39 loc) · 1.47 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
38
39
40
41
(defproject b-social/vent "0.6.10-SNAPSHOT"
:description "Rule based event processing engine."
:url "https://github.com/b-social/vent"
:license {:name "The MIT License"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.10.0"]
[medley "1.0.0"]
[halboy "4.0.1"]]
:plugins [[lein-eftest "0.5.3"]
[lein-changelog "0.3.2"]
[lein-shell "0.5.0"]
[lein-codox "0.10.7"]]
:profiles {:shared {:dependencies [[faker "0.3.2"]
[clj-fakes "0.11.0"]
[eftest "0.5.3"]]}
:dev [:shared]
:test [:shared]}
:codox
{:namespaces [#"^vent\."]
:metadata {:doc/format :markdown}
:output-path "docs"
:source-uri "https://github.com/b-social/vent/blob/{version}/{filepath}#L{line}"}
:eftest {:multithread? false}
:deploy-repositories {"releases" {:url "https://repo.clojars.org"
:creds :gpg}}
: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"]])