forked from cgmartin/clj-wamp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
16 lines (16 loc) · 903 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(defproject clj-wamp "0.6.0"
: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.5.1"]
[org.clojure/core.incubator "0.1.2"]
[org.clojure/tools.logging "0.2.6"]
[http-kit "2.1.3"]
[cheshire "5.2.0"]]
:profiles {:1.4 {:dependencies [[org.clojure/clojure "1.4.0"]]}
:dev {:dependencies [[log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]}})