forked from onyx-platform/onyx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
31 lines (30 loc) · 1.68 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
(defproject com.mdrogalis/onyx "0.5.3"
:description "Distributed, masterless, fault tolerant data processing for Clojure"
:url "https://github.com/MichaelDrogalis/onyx"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts ["-Xmx4g" "-Djava.net.preferIPv4Stack=true"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/data.fressian "0.2.0"]
[org.hornetq/hornetq-commons "2.4.0.Final"]
[org.hornetq/hornetq-core-client "2.4.0.Final"]
[org.hornetq/hornetq-server "2.4.0.Final"]
[org.apache.curator/curator-test "2.6.0"]
[com.stuartsierra/dependency "0.1.1"]
[com.stuartsierra/component "0.2.1"]
[com.taoensso/timbre "3.0.1"]
[zookeeper-clj "0.9.1"]
[prismatic/schema "0.3.1"]
[dire "0.5.1"]]
:profiles {:dev {:dependencies [[midje "1.6.3"]
[org.clojure/data.generators "0.1.2"]
[com.datomic/datomic-free "0.9.4755"
:exclusions [com.fasterxml.jackson.core/jackson-core]
:exclusions [org.fressian/fressian]]
[com.datomic/simulant "0.1.6"]
[org.clojure/tools.nrepl "0.2.3"]]
:plugins [[lein-midje "3.1.1"]
[codox "0.8.8"]]}
:circle-ci {:jvm-opts ["-Xmx4g" "-Djava.net.preferIPv4Stack=true"]}}
:codox {:output-dir "doc/api"})