This repository has been archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 205
/
project.clj
100 lines (100 loc) · 4.49 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(defproject org.onyxplatform/onyx "0.8.1-alpha9"
:description "Distributed, masterless, high performance, fault tolerant data processing for Clojure"
:url "https://github.com/onyx-platform/onyx"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories {"snapshots" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}
"releases" {:url "https://clojars.org/repo"
:username :env
:password :env
:sign-releases false}}
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/core.async "0.2.374"]
[org.apache.curator/curator-framework "2.9.1"]
[org.apache.curator/curator-test "2.9.1"]
[clj-tuple "0.2.2"]
[com.stuartsierra/dependency "0.2.0"]
[com.stuartsierra/component "0.3.0"]
[com.taoensso/timbre "4.1.4"]
[com.taoensso/nippy "2.10.0"]
[uk.co.real-logic/aeron-all "0.2.1"]
[prismatic/schema "1.0.3"]
[org.apache.zookeeper/zookeeper "3.4.6"
:exclusions [org.slf4j/slf4j-log4j12]]
[org.apache.bookkeeper/bookkeeper-server "4.3.1"
:exclusions [org.slf4j/slf4j-log4j12]]
[org.rocksdb/rocksdbjni "4.0"]
[log4j/log4j "1.2.17"]
[org.slf4j/slf4j-api "1.7.12"]
[org.slf4j/slf4j-nop "1.7.12"]
[table "0.5.0"]]
:aot [onyx.interop]
:jvm-opts ["-Xmx4g" "-XX:-OmitStackTraceInFastThrow"]
:profiles {:dev {:aot ^:replace []
:dependencies [[org.clojure/tools.nrepl "0.2.11"]
[org.clojure/test.check "0.8.2"]
[org.clojars.czan/stateful-check "0.3.1"]
[com.gfredericks/test.chuck "0.2.0"]
[joda-time/joda-time "2.8.2"]]
:plugins [[lein-jammin "0.1.1"]
[lein-set-version "0.4.1"]
[lonocloud/lein-unison "0.1.11"]
[codox "0.8.8"]]}
:reflection-check {:global-vars {*warn-on-reflection* true
*assert* false
*unchecked-math* :warn-on-boxed}}
:circle-ci {:jvm-opts ["-Xmx2500M"
"-XX:+UnlockCommercialFeatures"
"-XX:+FlightRecorder"
"-XX:StartFlightRecording=duration=1080s,filename=recording.jfr"]}}
:unison
{:repos
[{:git "git@onyx-kafka:onyx-platform/onyx-kafka.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-datomic:onyx-platform/onyx-datomic.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-sql:onyx-platform/onyx-sql.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-redis:onyx-platform/onyx-redis.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-seq:onyx-platform/onyx-seq.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-durable-queue:onyx-platform/onyx-durable-queue.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-metrics:onyx-platform/onyx-metrics.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-bookkeeper:onyx-platform/onyx-bookkeeper.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}
{:git "git@onyx-dashboard:onyx-platform/onyx-dashboard.git"
:branch "compatibility"
:release-branch "master"
:release-script "scripts/release.sh"
:merge "master"}]}
:codox {:output-dir "doc/api"})