Last active
August 29, 2015 14:25
-
-
Save bensu/7d533b90c3e6e3907df2 to your computer and use it in GitHub Desktop.
lein clojure version trouble
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Possibly confusing dependencies found: | |
[s3-wagon-private "1.1.2"] -> [org.springframework.build.aws/org.springframework.build.aws.maven "3.0.0.RELEASE"] -> [commons-httpclient "3.1"] -> [commons-logging "1.0.4"] | |
overrides | |
[s3-wagon-private "1.1.2"] -> [org.springframework.build.aws/org.springframework.build.aws.maven "3.0.0.RELEASE"] -> [net.java.dev.jets3t/jets3t "0.7.2"] -> [commons-logging "1.1.1"] | |
Consider using these exclusions: | |
[s3-wagon-private "1.1.2" :exclusions [commons-logging]] | |
[s3-wagon-private "1.1.2"] -> [org.springframework.build.aws/org.springframework.build.aws.maven "3.0.0.RELEASE"] -> [commons-httpclient "3.1"] -> [commons-codec "1.2"] | |
overrides | |
[s3-wagon-private "1.1.2"] -> [org.springframework.build.aws/org.springframework.build.aws.maven "3.0.0.RELEASE"] -> [net.java.dev.jets3t/jets3t "0.7.2"] -> [commons-codec "1.3"] | |
Consider using these exclusions: | |
[s3-wagon-private "1.1.2" :exclusions [commons-codec]] | |
[cider/cider-nrepl "0.9.0-20150616.120440-43"] | |
[org.tcrawley/dynapath "0.2.3" :exclusions [[org.clojure/clojure]]] | |
[clojure-complete "0.2.3" :scope "test" :exclusions [[org.clojure/clojure]]] | |
[hiccup "1.0.5" :exclusions [[org.clojure/clojure]]] | |
[jamesmacaulay/zelkova "0.4.0" :exclusions [[org.clojure/clojure]]] | |
[org.clojure/core.async "0.1.346.0-17112a-alpha"] | |
[org.clojure/tools.analyzer.jvm "0.1.0-beta12"] | |
[org.clojure/core.memoize "0.5.6"] | |
[org.clojure/core.cache "0.6.3"] | |
[org.clojure/data.priority-map "0.0.2"] | |
[org.clojure/tools.analyzer "0.1.0-beta12"] | |
[org.ow2.asm/asm-all "4.1"] | |
[leinjacker "0.4.2" :exclusions [[org.clojure/clojure]]] | |
[org.clojure/core.contracts "0.0.1"] | |
[org.clojure/core.unify "0.5.3"] | |
[org.clojure/clojure "1.7.0"] | |
[org.clojure/clojurescript "0.0-3308"] | |
[com.google.javascript/closure-compiler "v20150505"] | |
[args4j "2.0.26"] | |
[com.google.code.findbugs/jsr305 "1.3.9"] | |
[com.google.code.gson/gson "2.2.4"] | |
[com.google.guava/guava "18.0"] | |
[com.google.javascript/closure-compiler-externs "v20150505"] | |
[com.google.protobuf/protobuf-java "2.5.0"] | |
[org.clojure/data.json "0.2.6"] | |
[org.clojure/google-closure-library "0.0-20150505-021ed5b3"] | |
[org.clojure/google-closure-library-third-party "0.0-20150505-021ed5b3"] | |
[org.clojure/tools.reader "0.9.2"] | |
[org.mozilla/rhino "1.7R5"] | |
[org.clojure/tools.namespace "0.2.11" :exclusions [[org.clojure/clojure]]] | |
[org.clojure/tools.nrepl "0.2.10" :scope "test" :exclusions [[org.clojure/clojure]]] | |
[org.pegdown/pegdown "1.4.2" :exclusions [[org.clojure/clojure]]] | |
[org.parboiled/parboiled-java "1.1.6"] | |
[org.ow2.asm/asm-analysis "4.1"] | |
[org.ow2.asm/asm-tree "4.1"] | |
[org.ow2.asm/asm-util "4.1"] | |
[org.ow2.asm/asm "4.1"] | |
[org.parboiled/parboiled-core "1.1.6"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:user {:plugins [[cider/cider-nrepl "0.9.1"] | |
[s3-wagon-private "1.1.2"]]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defproject funcool/codeina "0.2.0" | |
:description "Generate documentation from Clojure source files" | |
:url "https://github.com/funcool/codeina" | |
:license {:name "Eclipse Public License" | |
:url "http://www.eclipse.org/legal/epl-v10.html"} | |
:source-paths ["src"] | |
:javac-options ["-target" "1.7" "-source" "1.7" "-Xlint:-options"] | |
:dependencies [[org.clojure/clojure "1.7.0"] | |
[org.clojure/clojurescript "0.0-3308"] | |
[org.clojure/tools.namespace "0.2.11" :exclusions [org.clojure/clojure]] | |
[jamesmacaulay/zelkova "0.4.0" :exclusions [org.clojure/clojure]] | |
[leinjacker "0.4.2" :exclusions [org.clojure/clojure]] | |
[hiccup "1.0.5" :exclusions [org.clojure/clojure]] | |
[org.pegdown/pegdown "1.4.2" :exclusions [org.clojure/clojure]]] | |
:jar-exclusions [#"\.swp|\.swo|user.clj"] | |
:eval-in-leiningen true) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment