-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbuild.boot
More file actions
25 lines (20 loc) · 795 Bytes
/
build.boot
File metadata and controls
25 lines (20 loc) · 795 Bytes
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
(set-env! :resource-paths #{"src"})
(require '[boot.git :refer [last-commit]]
'[adzerk.bootlaces :refer :all])
(def +version+ "0.2.0")
(bootlaces! +version+)
(task-options!
push {:repo "deploy"
:ensure-branch "master"
:ensure-clean true
:ensure-tag (last-commit)
:ensure-version +version+}
pom {:project 'adzerk/bootlaces
:version +version+
:description "Adzerk's boot configurations for Clojure libraries "
:url "https://github.com/adzerk/bootlaces"
:scm {:url "https://github.com/adzerk/bootlaces"}
:license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}})
(deftask deploy
[]
(comp (build-jar) (push-release)))