On 13 May 2016, at 11:46, Juan A. Ruz @tangrammer <[email protected]> wrote:
> (sorry previous comment was sent before I wanted :- ) > Hi Alan, > I think you should keep commons-code 1.9 as far as is the last-version > required by any dep of your project > so ... > > you could exclude globally (using :exclusions) your dependencies that are > causing the conflict and specified later in your :dependencies > :exclusions [org.clojure/clojure > commons-codec] > :dependencies [[org.clojure/clojure "1.7.0"] > [commons-codec "1.9"] > [twitter-api "0.7.8"]] > > or just exclude it locally > :dependencies [[org.clojure/clojure "1.7.0"] > [commons-codec "1.9"] > [twitter-api "0.7.8" :exclusions [commons-codec]]] Your second suggestion seems to have worked. Thanks, Alan -- 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 --- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
