Put this in your Servlet.clj file:
(defonce *swank* (ref false))
(when-not (or *compile-files*
@*swank*)
(clojure.main/with-bindings
(ignore-protocol-version "2008-12-09")
(start-server "/dev/null" :port 4005 :encoding "iso-latin-1-unix"))
(dosync
(ref-set *swank* true)))
comments welcome. Share and enjoy.