-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
31 lines (27 loc) · 1.07 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
30
31
(defproject yada-datomic "0.1.0-SNAPSHOT"
:description "Boilerplate for yada + datomic"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[aero "1.1.2"]
[org.clojure/clojure "1.9.0"]
[org.clojure/core.async "0.4.474"]
[org.clojure/tools.namespace "0.2.11"]
[com.datomic/datomic-pro "0.9.5561.56"]
[com.stuartsierra/component "0.3.2"]
[com.taoensso/timbre "4.10.0"]
[io.rkn/conformity "0.5.1"]
[aleph "0.4.3"]
[cheshire "5.8.0"]
[datomic-schema "1.3.0"]
[yada "1.2.6"]]
:source-paths ["src" "dev"]
:repl-options {:init-ns user
:welcome (println "Type (dev) to start")}
:profiles
{:dev
{:dependencies [[org.clojure/test.check "0.9.0"]]
:source-paths ["dev"]}}
:repositories
{"my.datomic.com" {:url "https://my.datomic.com/repo"
:creds :gpg}})