-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
29 lines (25 loc) · 1.33 KB
/
project.clj
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
(defproject navis/untangled-datomic "0.4.11"
:description "Datomic plugin for Untangled webapps"
:url "http://www.github.com/untangled-web"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.8.0"]
[datomic-helpers "1.0.0"]
[com.datomic/datomic-free "0.9.5344" :scope "provided" :exclusions [joda-time]]
[org.clojure/math.combinatorics "0.1.1"]
[com.stuartsierra/component "0.3.1"]
[org.clojure/tools.namespace "0.2.10"]
[org.clojure/tools.cli "0.3.3"]
[org.clojure/java.classpath "0.2.2"]
[io.rkn/conformity "0.3.4" :exclusions [com.datomic/datomic-free]]
[com.taoensso/timbre "4.3.1"]
[navis/untangled-spec "0.3.6" :scope "test" :exclusions [io.aviso/pretty]]
[democracyworks/datomic-toolbox "2.0.0" :exclusions [com.datomic/datomic-pro]]
[datomic-schema-grapher "0.0.1"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.14.0"]]
:test-refresh {:report untangled-spec.reporters.terminal/untangled-report
:with-repl true
:changes-only true}
:source-paths ["src"]
:test-paths ["specs"]
:resource-paths ["src" "resources"])