-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
33 lines (30 loc) · 1.7 KB
/
project.clj
File metadata and controls
33 lines (30 loc) · 1.7 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
31
32
33
(defproject braid-onyx "0.1.0-SNAPSHOT"
:description ""
:url ""
:license {:name ""
:url ""}
:dependencies [[aero "1.0.0-beta2"]
[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.5"]
[org.onyxplatform/onyx "0.9.10-beta1" :exclusions [prismatic/schema commons-codec commons-logging
org.clojure/tools.reader]]
[org.onyxplatform/lib-onyx "0.9.7.1" :exclusions [commons-codec]]
[com.datomic/datomic-pro "0.9.5201" :exclusions [joda-time commons-codec
org.apache.httpcomponents/httpcore
org.apache.httpcomponents/httpclient]]
[org.onyxplatform/onyx-datomic "0.9.10.0-beta1" :exclusions [org.slf4j/slf4j-api commons-codec]]
[org.onyxplatform/onyx-elasticsearch "0.9.10.0-beta1" :exclusions [org.slf4j/slf4j-api]]
[org.postgresql/postgresql "9.3-1103-jdbc4"]
]
:source-paths ["src"]
:main braid-onyx.core
:repositories {"my.datomic.com" {:url "https://my.datomic.com/repo"
:creds :gpg}}
:profiles {:dev {:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:global-vars {*assert* true}}
:dependencies [[org.clojure/tools.namespace "0.2.11"]
[lein-project-version "0.1.0"]]
:uberjar {:aot [lib-onyx.media-driver
braid-onyx.core]
:uberjar-name "peer.jar"
:global-vars {*assert* false}}})