-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
29 lines (24 loc) · 1.28 KB
/
project.clj
File metadata and controls
29 lines (24 loc) · 1.28 KB
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 bkell "0.1.2"
:description "Bkell provides a Shell and API for maintaining balanced records for business transactions"
:url "https://github.com/twashing/bkell"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0-alpha1"]
[com.taoensso/timbre "3.3.1"]
[com.datomic/datomic-free "0.9.5052" :exclusions [joda-time]]
;; [com.datomic/datomic-pro "0.9.5130" :exclusions [joda-time]]
[im.chit/hara.component "2.1.7"]
[im.chit/adi "0.3.1"]
[environ "1.0.0"]
[missing-utils "0.1.5"]
[slingshot "0.12.1"]]
:repl-options {:init-ns bkell.bkell}
:profiles {:dev {:source-paths ["dev"]
:repositories {"my.datomic.com" {:url "https://my.datomic.com/repo"
:creds :gpg}}
:dependencies [[org.clojure/test.check "0.6.1"]
[midje "1.6.3"]
[alembic "0.3.2"]
[spyscope "0.1.5"]]
:plugins [[lein-midje "3.1.3"]]}}
:jvm-opts ^:replace ["-Xmx512m" "-server"])