Closed aaronblenkush closed 8 years ago
I'm not sure whether this is a bug or a misconfiguration in my project. It seems to be some kind of namespace conflict?
If I add the following dependency to project.clj:
project.clj
[com.google.http-client/google-http-client-jackson2 "1.20.0"]
Then when I run lein figwheel I get the following error:
lein figwheel
java.lang.ClassNotFoundException: org.apache.http.conn.scheme.SchemeSocketFactory
Adding the following dependency fixes the issue:
[org.apache.httpcomponents/httpclient "4.4.1"]
It sounds like the dependency conflicts with one of the figwheel dependencies, and your solutions looks like the right way to address it. This doesn't appear like an issue with Luminus itself though.
I'm not sure whether this is a bug or a misconfiguration in my project. It seems to be some kind of namespace conflict?
If I add the following dependency to
project.clj
:Then when I run
lein figwheel
I get the following error:Adding the following dependency fixes the issue: