I have been trying to use the Twitter API library by Adam Wynne:

https://github.com/adamwynne/twitter-api

and it appears to have a dependency problem.

My project.clj file looks like this

(defproject hash-tag-counting-thingy "0.1.0-SNAPSHOT"
  :description "FIXME: write description"
  :url "http://example.com/FIXME";
  :license {:name "Eclipse Public License"
            :url "http://www.eclipse.org/legal/epl-v10.html"}
  :dependencies [[org.clojure/clojure "1.7.0"]
                            [twitter-api "0.7.8"]])

And when I ran "lein deps :tree” I got

[twitter-api "0.7.8"] -> [clj-oauth "1.5.1"] -> [commons-codec "1.8"]
 overrides
[twitter-api "0.7.8"] -> [clj-oauth "1.5.1"] -> [clj-http "0.9.1"] -> 
[commons-codec "1.9" :exclusions [org.clojure/clojure]]

What is the recommended way to deal with a problem like this?

Alan

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to