I am still fairly new to Clojure, the JVM and Java, so I get lost trying to read some of the stuff that assumes knowledge of any of those 3. I want to build a Clojure app using Jetty and offering WebSocket connections.
I have already built an app with Clojure and Jetty, so that part is easy. But I look here: http://wiki.eclipse.org/index.php?title=Jetty/Feature/WebSockets&oldid=297254 and it says I should download 3 jars: wget -O jetty-all.jar --user-agent=demo \ http://repo2.maven.org/maven2/org/eclipse/jetty/aggregate/jetty-all/7.6.2.v20120308/jetty-all-7.6.2.v20120308.jarwget -O jetty-websocket-tests.jar --user-agent=demo \ http://repo2.maven.org/maven2/org/eclipse/jetty/jetty-websocket/7.6.2.v20120308/jetty-websocket-7.6.2.v20120308-tests.jarwget --user-agent=demo \ http://repo2.maven.org/maven2/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar I assume I put these in project.clj? I already have stuff in there like: :dependencies [[org.clojure/clojure "1.3.0"] [net.cgrand/moustache "1.1.0"] [ring "1.1.5"] [ring/ring-jetty-adapter "1.1.5"] etc Searching on this topic brought me to this: https://groups.google.com/forum/?fromgroups=#!topic/ring-clojure/JD9FLJFTVsg But that is 2 years old. I have not found anything specific to ring/jetty/websockets that is recent. Can anyone point me to documentation that might lead me out of my confusion? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en
