-
Notifications
You must be signed in to change notification settings - Fork 8
/
project.clj
20 lines (18 loc) · 874 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject cddr/integrity "0.3.0-SNAPSHOT"
:description "A collection of libraries for maintaining data integrity"
:url "https://github.com/cddr/integrity"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[prismatic/schema "0.4.4"]
[com.taoensso/tower "3.1.0-beta4"]
[com.damballa/abracad "0.4.13"]]
:plugins [[codox "0.6.7"]]
:codox {:writer codox-md.writer/write-docs
:output-dir "doc/v0.3.0"
:src-dir-uri "http://github.com/cddr/integrity/blob/master/"}
:profiles
{:test {:dependencies [[com.datomic/datomic-free "0.9.5344"]]
:resource-paths ["test/resources"]}
:dev {:dependencies [[com.datomic/datomic-free "0.9.5344"]]
:resource-paths ["test/resources"]}})