-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.boot
31 lines (26 loc) · 1.16 KB
/
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
26
27
28
29
30
31
(set-env!
:source-paths #{"src" "test"}
:dependencies '[[adzerk/bootlaces "0.1.12" :scope "test"]
[adzerk/boot-test "1.1.0" :scope "test"]
[adzerk/env "0.3.0"]
[clj-http "2.1.0"]
[cheshire "5.5.0"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.logging "0.3.1"]
[camel-snake-kebab "0.3.2"]])
(require '[adzerk.bootlaces :refer :all]
'[adzerk.boot-test :refer :all])
(def +version+ "0.0.6")
(bootlaces! +version+)
(task-options!
pom {:project 'adzerk/adzerk-clj
:version +version+
:description "A Clojure wrapper for the Adzerk APIs"
:url "https://github.com/adzerk-oss/adzerk-clj"
:scm {:url "https://github.com/adzerk-oss/adzerk-clj"}
:license {"name" "Eclipse Public License"
"url" "http://www.eclipse.org/legal/epl-v10.html"}})
(deftask deploy
"Builds uberjar, installs it to local Maven repo, and deploys it to Clojars."
[]
(comp (build-jar) (push-release)))