forked from mathias/boot-gorilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.boot
24 lines (20 loc) · 853 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
(set-env!
:source-paths #{"src" "test"}
:resource-paths #{"src" "test" "scss" "bower_components"}
:dependencies '[[org.clojure/clojure "1.8.0"]
[provisdom/boot-tasks "0.5.1"]
[gorilla-repl "0.3.7"]]
:compiler-options {:compiler-stats true})
(def +version+ "0.1.0")
(require '[boot-gorilla.core :refer :all]
'[provisdom.boot-tasks.core :refer [release]])
(task-options!
pom {:project 'boot-gorilla
:version +version+
:description "Use the Gorilla REPL as a task in your Boot project"
:url "https://github.com/mathias/boot-gorilla"
:scm {:url "https://github.com/mathias/boot-gorilla"}
:license {"Eclipse Public License" "http://www.eclipse.org/legal/epl-v10.html"}})
(deftask build
[]
(comp (pom) (jar) (install)))