-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.boot
24 lines (20 loc) · 1.06 KB
/
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"}
:dependencies '[[org.clojure/clojure "1.6.0" :scope "provided"]
[boot/core "2.0.0-rc12" :scope "provided"]
[com.datomic/datomic-free "0.9.5130" :scope "provided"
:exclusions [joda-time
org.slf4j/slf4j-nop
org.slf4j/slf4j-log4j12]]
[adzerk/bootlaces "0.1.11" :scope "test"]])
(require '[adzerk.bootlaces :refer :all])
(def +version+ "0.2.2")
(bootlaces! +version+)
(task-options!
pom {:project 'io.homegrown/boot-sim
:version +version+
:description "Boot tasks for running simulation tests."
:url "https://github.com/homegrownlabs/boot-sim"
:scm {:url "https://github.com/homegrownlabs/boot-sim"}
:license {"The MIT License"
"http://opensource.org/licenses/MIT"}})