-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to make the it work as dev-dependency #2
Comments
What happens if you try it with just |
I am having the same problem in Emacs. Having done clojure-jack-in, when I use the repl in emacs, I get: Could not locate ring/util/serve__init.class or ring/util/serve.clj on classpath: However, when I use lein repl, then:
|
Fwiw, I also ran into the exception:
until I realized that leiningen 2.x no longer supports :dev-dependencies. I switched to use
I also updated the logger to work with jetty 7+ here (and taged it as 0.1.3-SNAPSHOT): https://github.com/upgradingdave/ring-serve |
Hi,
I am having a weired problem. When I place ring-serve as a dev-dependency, the repl is not able to find it in its path. I have tried it both with eclipse and clooj and both fail to find it and give me the following exception -
=> (use 'ring.util.serve)
<
FileNotFoundException java.io.FileNotFoundException: Could not locate ring/util/serve__init.class or ring/util/serve.clj on classpath: >
Below is my project.clj -
(defproject ring-hello "1.0.0-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[org.clojure/clojure "1.3.0"][ring "1.0.1"][compojure "1.0.0"]]
:dev-dependencies[[lein-eclipse "1.0.0"][ring-serve "0.1.2"]])
It however works when I have the ring-serve in the dependencies section!
Can someone please help?
Thanks,
Murtaza
The text was updated successfully, but these errors were encountered: