-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.boot
More file actions
19 lines (16 loc) · 741 Bytes
/
build.boot
File metadata and controls
19 lines (16 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
(set-env!
:source-paths #{"src"}
:resource-paths #{"src"}
:dependencies '[[org.clojure/clojure "1.8.0" :scope "provided"]
[boot/core "2.1.0" :scope "provided"]
[junit "4.12" :scope "test"]])
(require '[radicalzephyr.boot-junit :refer [junit]])
(def +version+ "0.4.0")
(task-options!
pom {:project 'radicalzephyr/boot-junit
:version +version+
:description "Run some jUnit tests in boot!"
:url "https://github.com/radicalzephyr/boot-junit"
:scm {:url "https://github.com/radicalzephyr/boot-junit"}
:license {"Eclipse Public License"
"http://www.eclipse.org/legal/epl-v10.html"}})