-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.boot
More file actions
27 lines (22 loc) · 954 Bytes
/
build.boot
File metadata and controls
27 lines (22 loc) · 954 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
26
27
(def project 'hellhound/boot-template)
(def version "0.1.0-SNAPSHOT")
(set-env! :resource-paths #{"resources" "src"}
;; uncomment this if you write tests for your template:
;; :source-paths #{"test"}
:dependencies '[[org.clojure/clojure "RELEASE"]
[boot/new "RELEASE"]
[adzerk/boot-test "RELEASE" :scope "test"]])
(task-options!
pom {:project project
:version version
:description "HellHound 'boot new' template."
:url "http://github.com/Cidamic/hellhound-template"
:scm {:url "https://github.com/Codamic/hellhound-template"}
:license {"GPLv2"
"https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"}})
(deftask build
"Build and install the project locally."
[]
(comp (pom) (jar) (install)))
(require '[adzerk.boot-test :refer [test]]
'[boot.new :refer [new]])