-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.boot
28 lines (22 loc) · 983 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
26
27
(set-env!
:source-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.8.0"]
[adzerk/bootlaces "0.1.13"]
[adzerk/env "0.4.0"]
[cheshire "5.7.1"]
[instaparse "1.4.7"]
[irresponsible/tentacles "0.6.1"]])
(require '[adzerk.bootlaces :refer :all])
(def ^:const +version+ "0.1.4")
(task-options!
pom {:project 'io.djy/boot-github
:version +version+
:description "A collection of Git/GitHub-related development tasks for Boot"
:url "https://github.com/daveyarwood/boot-github"
:scm {:url "https://github.com/daveyarwood/boot-github"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})
(bootlaces! +version+)
(deftask deploy
"Builds uberjar, installs it to local Maven repo, and deploys it to Clojars."
[]
(comp (build-jar) (push-release)))