-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.boot
35 lines (26 loc) · 1.12 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
25
26
27
28
29
30
31
32
33
34
35
(set-env!
:resource-paths #{"resources"}
:source-paths #{"src"}
:dependencies '[[org.clojure/core.async "0.3.443" :scope "provided"]
[com.datomic/datomic-pro "0.9.5661"
:scope "provided"
:exclusions [org.clojure/clojure]]
[com.datomic/client-pro "0.8.14"
:scope "provided"
:exclusions [org.clojure/*]]
[adzerk/boot-test "RELEASE" :scope "test"]
[adzerk/bootlaces "0.1.13" :scope "test"]])
(require '[adzerk.boot-test :refer (test)]
'[adzerk.bootlaces :refer :all])
(def project 'datomic.schema)
(def +version+ "0.1.19")
(bootlaces! +version+)
(task-options!
pom {:project project
:version +version+
:description "A DSL for Datomic Schema Definitions"
:url "https://github.com/gfZeng/datomic.schema"
:scm {:url "https://github.com/yourname/datomic.schema"}
:license {"Eclipse Public License"
"http://www.eclipse.org/legal/epl-v10.html"}})
(require '[adzerk.boot-test :refer [test]])