-
Notifications
You must be signed in to change notification settings - Fork 12
/
project.clj
17 lines (17 loc) · 953 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject clj-wamp "1.0.2"
:description "The WebSocket Application Messaging Protocol for Clojure"
:url "https://github.com/cgmartin/clj-wamp"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/core.incubator "0.1.2"]
[org.clojure/tools.logging "0.2.6"]
[org.clojure/data.codec "0.1.0"]
[http-kit "2.1.5"]
[cheshire "5.2.0"]]
:profiles {:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
:dev {:dependencies [[log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]}})