-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
25 lines (25 loc) · 1.27 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
(defproject org.clojars.gixxi/lambdaroyal-memory "1.3.5"
:description "STM-based in-memory database storing persistent data structures"
:url "https://github.com/gixxi/lambdaroyal-memory"
:license {:name "FreeBSD License"
:url "http://www.freebsd.org/copyright/freebsd-license.html"}
:dependencies [[org.clojure/clojure "1.9.0"]
[org.clojure/spec.alpha "0.2.176"]
[org.clojure/tools.cli "0.3.3"]
[org.clojure/core.async "0.4.474"]
[clj-http "2.0.0"]
;;accepting nRepl Connections
[org.clojure/tools.nrepl "0.2.12"]
[com.ashafa/clutch "0.4.0"
:exclusions [clj-http]]
[org.clojure/tools.logging "0.3.1"]
[org.clojure/data.json "0.2.6"]
[org.slf4j/slf4j-log4j12 "1.7.1"]
[log4j "1.2.17"
:exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]
:profiles {:dev {:dependencies [[midje "1.9.4"]]
:plugins [[lein-midje "3.2.1"]]}}
:aot [lambdaroyal.memory.core lambdaroyal.memory.eviction.core lambdaroyal.memory.helper])