-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathproject.clj
31 lines (31 loc) · 1.74 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 org.onyxplatform/onyx-bookkeeper "0.14.5.0"
:description "Onyx plugin for BookKeeper"
:url "https://github.com/onyx-platform/onyx-bookkeeper"
: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.8.0"]
[org.apache.bookkeeper/bookkeeper-server "4.4.0" :exclusions [org.slf4j/slf4j-log4j12]]
;[org.apache.bookkeeper/bookkeeper "4.4.0" :exclusions [org.slf4j/slf4j-log4j12]]
^{:voom {:repo "[email protected]:onyx-platform/onyx.git" :branch "master"}}
[org.onyxplatform/onyx "0.14.5"]]
:jvm-opts ^:replace ["-Xmx3g"]
:profiles {:debug
{:jvm-opts ^:replace ["-server"
"-Xmx3000M"
"-XX:+UseG1GC"
"-XX:-OmitStackTraceInFastThrow"
"-XX:+UnlockCommercialFeatures"
"-XX:+FlightRecorder"
"-XX:StartFlightRecording=duration=1080s,filename=recording.jfr"]}
:dev {:plugins [[lein-set-version "0.4.1"]
[lein-update-dependency "0.1.2"]
[lein-pprint "1.1.1"]]}
:circle-ci {:jvm-opts ["-Xmx4g" "-server"]}})