-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
30 lines (29 loc) · 1.65 KB
/
project.clj
File metadata and controls
30 lines (29 loc) · 1.65 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
30
(defproject org.vlacs/flare "0.1.0"
:description "Flare is an event bus that uses Datomic to store events and
data associated with those events so other applications can
subscribe to events where Flare will asyncronously call the
other applications API that they provide to Flare."
:url "https://www.github.com/vlacs/flare"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.vlacs/stateful "0.1.1"]
[org.vlacs/hatch "0.2.0"]
[datomic-schematode "0.1.2-RC1"]
[org.vlacs/helmsman "0.2.6"]
[liberator "0.10.0"]
[org.clojure/data.json "0.2.4"]
[http-kit "2.1.16"]
[prismatic/schema "0.2.2"]
[com.taoensso/timbre "3.2.1"]]
:profiles {:dev {:dependencies [[org.clojure/tools.namespace "0.2.4"]
[com.datomic/datomic-free "0.9.4815.12"]]
:source-paths ["dev"]}
:dev-pro {:dependencies [[org.clojure/tools.nrepl "0.2.3"]
[org.clojure/tools.namespace "0.2.4"]
[com.datomic/datomic-pro "0.9.4815.12"]]
:source-paths ["dev"]
:repositories [["my.datomic.com"
{:url "https://my.datomic.com/repo"
:username :env/lein_datomic_repo_username
:password :env/lein_datomic_repo_password}]]}})