forked from clj-commons/durable-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
18 lines (18 loc) · 900 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(defproject helpshift/durable-queue "0.1.7"
:description "a in-process task-queue that is backed by disk."
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[com.taoensso/nippy "2.8.0"]
[primitive-math "0.1.4"]
[byte-streams "0.2.2"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.5.1"]
[criterium "0.4.3"]
[codox-md "0.2.0" :exclusions [org.clojure/clojure]]]}}
:global-vars {*warn-on-reflection* true}
:test-selectors {:default #(not (some #{:benchmark :stress} (keys %)))
:benchmark :benchmark
:stress :stress}
:plugins [[codox "0.6.6"]]
:codox {:writer codox-md.writer/write-docs
:include [durable-queue]}
:jvm-opts ^:replace ["-server" "-Xmx100m"])