-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.boot
More file actions
35 lines (30 loc) · 836 Bytes
/
build.boot
File metadata and controls
35 lines (30 loc) · 836 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
28
29
30
31
32
33
34
35
(set-env!
:resource-paths #{"src"}
:dependencies '[[degree9/boot-semver "1.8.0" :scope "test"]])
(require '[degree9.boot-semver :refer :all])
(task-options!
pom {:project 'degree9/featherscript
:description "Feathersjs wrapper for ClojureScript."
:url "http://github.com/degree9/featherscript"
:scm {:url "http://github.com/degree9/featherscript"}})
(deftask ci-deps
"Force CI to fetch dependencies."
[]
identity)
(deftask deploy
"Build project for deployment to clojars."
[]
(comp
(version :minor 'inc :patch 'zero)
(build-jar)
(push-release)))
(deftask develop
"Build project for local development."
[]
(comp
(version :develop true
:minor 'inc
:patch 'zero
:pre-release 'snapshot)
(watch)
(build-jar)))