-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.boot
26 lines (21 loc) · 840 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
(set-env!
:source-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"]
[adzerk/bootlaces "0.1.13" :scope "test"]])
(require '[adzerk.bootlaces :refer [bootlaces! build-jar push-release]])
(def +version+ "1.3.2-1")
(bootlaces! +version+)
(deftask add-src []
(with-pre-wrap fileset
(-> (reduce
add-resource
fileset
(input-dirs fileset))
commit!)))
(task-options!
pom {:project 'org.martinklepsch/boot-garden
:version +version+
:description "Boot task to compile Garden stylesheets to CSS."
:url "https://github.com/martinklepsch/boot-garden"
:scm {:url "https://github.com/martinklepsch/boot-garden"}
:license {"EPL" "http://www.eclipse.org/legal/epl-v10.html"}})