-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.boot
26 lines (22 loc) · 1.13 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
(set-env! :source-paths #{"src"}
:dependencies '[[adzerk/bootlaces "0.1.13" :scope "test"]]
:repositories [["clojars" (cond-> {:url "https://clojars.org/repo/"}
(System/getenv "CLOJARS_USER")
(merge {:username (System/getenv "CLOJARS_USER")
:password (System/getenv "CLOJARS_PASS")}))]])
(require '[boot.git :refer [last-commit]]
'[adzerk.bootlaces :refer :all])
(def +version+ "0.1.1")
(bootlaces! +version+)
(task-options!
push {:repo "clojars"
:ensure-branch "master"
:ensure-clean true
:ensure-tag (last-commit)
:ensure-version +version+}
pom {:project 'class-names
:version +version+
:description "classnames-inspired helper for managing dynamic classes in Reagent and Re-frame apps"
:url "https://github.com/YurySolovyov/class-names-cljs"
:scm {:url "https://github.com/YurySolovyov/class-names-cljs"}
:license {"MIT" "https://opensource.org/licenses/MIT"}})