forked from tolitius/envoy
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.boot
25 lines (20 loc) · 931 Bytes
/
build.boot
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
(def +version+ "0.1.26")
(set-env!
:source-paths #{"src"}
:dependencies '[[cheshire "5.10.1" :exclusions [org.clojure/clojure]]
[org.clojure/core.async "1.1.587" :exclusions [org.clojure/clojure]]
[http-kit "2.6.0"]
;; boot clj
[boot/core "2.8.2" :scope "provided"]
[adzerk/bootlaces "0.2.0" :scope "test"]])
(require '[adzerk.bootlaces :refer :all])
(bootlaces! +version+)
(task-options!
push {:ensure-branch nil}
pom {:project 'tolitius/envoy
:version +version+
:description "a gentle touch of clojure to hashicorp's consul"
:url "https://github.com/tolitius/envoy"
:scm {:url "https://github.com/tolitius/envoy"}
:license {"Eclipse Public License"
"http://www.eclipse.org/legal/epl-v10.html"}})