-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
executable file
·20 lines (20 loc) · 989 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject jimpil/asynctopia "0.2.4-SNAPSHOT"
:description "High-level `core.async` utilities"
:url "https://github.com/jimpil/asynctopia"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.1" :scope "provided"]
[org.clojure/core.async "1.3.610"]
[clambda "0.1.5"]]
:repl-options {:init-ns asynctopia.core}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "--no-sign"]
["deploy"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
;["vcs" "push"]
]
:deploy-repositories [["releases" :clojars]] ;; lein release :patch
:signing {:gpg-key "jimpil1985@gmail.com"})