This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
clj-browserchannel/chat-demo/project.clj

12 lines
659 B
Clojure
Raw Normal View History

2012-04-07 15:02:07 -04:00
(defproject chat-demo "0.0.1"
:description "Example for using BrowserChannel and a client side with ClojureScript"
:dependencies [[org.clojure/clojure "1.3.0"]
[ring/ring-core "1.1.0-SNAPSHOT" :exclusions [javax.servlet/servlet-api]]
2012-04-07 15:02:07 -04:00
[org.clojure/clojurescript "0.0-1011" :exclusions [org.clojure/google-closure-library]]
[net.thegeez/google-closure-library "0.0-1698"]
2012-05-19 10:27:09 -04:00
[net.thegeez/clj-browserchannel-server "0.0.4"]
2012-04-07 15:02:07 -04:00
[net.thegeez/clj-browserchannel-jetty-adapter "0.0.1"]
2013-07-31 15:36:08 -04:00
#_[net.thegeez/clj-browserchannel-netty-adapter "0.0.1"]
2012-04-07 15:02:07 -04:00
]
)