-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
19 lines (19 loc) · 1.06 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(defproject com.caioaao/tank "1.0.0"
:description "Tank: Fault tolerant idioms"
:url "https://github.com/caioaao/tank"
:scm "https://github.com/caioaao/tank"
:manifest {"GIT_COMMIT" ~(System/getenv "GIT_COMMIT")
"BUILD_NUMBER" ~(System/getenv "BUILD_NUMBER")}
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/core.async "0.7.559"]]
:profiles {:dev {:dependencies [[org.clojure/test.check "0.10.0"]
[nubank/matcher-combinators "1.3.1"]
[com.gfredericks/test.chuck "0.2.10"]]
:plugins [[lein-cljfmt "0.6.6"]]}}
:release-tasks [["deploy" "clojars"]]
:deploy-repositories [["clojars" {:url "https://clojars.org/repo"
:sign-releases false
:username :env/clojars_username
:password :env/clojars_password}]])