-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.boot
28 lines (22 loc) · 913 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
28
(def project 'provisdom-clj/boot-template)
(def version "0.4.0")
(set-env! :resource-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.9.0"]
[adzerk/bootlaces "0.1.13"]
[seancorfield/boot-new "0.4.7"]])
(task-options!
pom {:project project
:version version
:description "The provisdom boot-new template"
:url "https://github.com/Provisdom/clj-boot-template"
:scm {:url "https://github.com/Provisdom/clj-boot-template"}
:license {"Eclipse Public License"
"http://www.eclipse.org/legal/epl-v10.html"}}
push {:gpg-sign false})
(require '[adzerk.bootlaces :refer [bootlaces! build-jar push-snapshot push-release]])
(bootlaces! version)
(deftask build []
(comp (pom) (jar) (install)))
(deftask deploy
[]
(comp (pom) (jar) (push)))