incanter / incanter

Clojure-based, R-like statistical computing and graphics environment for the JVM
http://incanter.org
2.24k stars 290 forks source link

No such var: m/div, compiling:(clatrix/core.clj:941:28) #158

Closed Velrok closed 11 years ago

Velrok commented 11 years ago

Hi,

I just upgraded to incanter 1.5.0 and I get the following compilation error:

java.lang.RuntimeException: No such var: m/div, compiling:(clatrix/core.clj:941:28)
    ... 61 stack levels elided ...
    at incanter.internal$eval3108$loading__4920__auto____3109.invoke(internal.clj:19)
    at incanter.internal$eval3108.invoke(internal.clj:19)
    ... 20 stack levels elided ...
    at incanter.core$eval3102$loading__4920__auto____3103.invoke(core.clj:19)
    at incanter.core$eval3102.invoke(core.clj:19)
    ... 20 stack levels elided ...
    at incanter.io$eval3096$loading__4920__auto____3097.invoke(io.clj:22)
    at incanter.io$eval3096.invoke(io.clj:22)
    ... 20 stack levels elided ...

Is this related to the libgfortran3 dependency?

I'm using a Mac OSX 10.8 (Mountain Lion).

I have gfortran installed:

$ gfortran -v                  [14:17:02]
Using built-in specs.
COLLECT_GCC=gfortran
COLLECT_LTO_WRAPPER=/usr/local/Cellar/gfortran/4.7.2/gfortran/libexec/gcc/x86_64-apple-darwin12.2.0/4.7.2/lto-wrapper
Target: x86_64-apple-darwin12.2.0
Configured with: ../configure --enable-languages=fortran --prefix=/usr/local/Cellar/gfortran/4.7.2/gfortran --datarootdir=/usr/local/Cellar/gfortran/4.7.2/share --bindir=/usr/local/Cellar/gfortran/4.7.2/bin --with-system-zlib --with-gmp=/usr/local/opt/gmp --with-mpfr=/usr/local/opt/mpfr --with-mpc=/usr/local/opt/libmpc --enable-checking=release --disable-stage1-checking --disable-build-poststage1-with-cxx --disable-libstdcxx-pc --disable-nls
Thread model: posix
gcc version 4.7.2 (GCC)

Am I missing something? Is there any further information I can supply?

All the best.

alexott commented 11 years ago

No, it shouldn't be a fortran-related... I'll investigate this later today...

alexott commented 11 years ago

it's really interesting why this happens - I'm usually develop Incanter on Mac OS X 10.8 (with fortran installed from macports)

Velrok commented 11 years ago

If I can provide any helpful data, please tell me. I'm happy to help.

Velrok commented 11 years ago

For now I found the following solution to my problem:

(def ds [{:x [1 2 3]
          :y [1 2 1]}
         {:x [1 2 3]
          :y [4 2 5]}])

(let [first-r (nth ds 0)
      secound (nth ds 1)
      _ (scatter-plot (:x first-r)
                      (:y first-r)
                      :x-label "recall"
                      :series-label "first run"
                      :legend true)
      plot (add-points _
                  (:x secound)
                  (:y secound)
                       :series-label "secound run")]
  (view plot))

Right now this looks like the more elegant solution to my problem. Just for people that run into a similar situation.

However the main issue still exists.

alexott commented 11 years ago

can you paste here the output of lein classpath?

Velrok commented 11 years ago

Sure:

/Users/velrok/projects/athena/spec:/Users/velrok/projects/athena/./dependencies/parallel-colt-matrix/src:/Users/velrok/projects/athena/./src:/Users/velrok/projects/athena/dev-resources:/Users/velrok/projects/athena/resources:/Users/velrok/projects/athena/classes:/Users/velrok/.m2/repository/org/clojars/runa/conjure/2.2.0/conjure-2.2.0.jar:/Users/velrok/.m2/repository/com/googlecode/netlib-java/netlib-java/0.9.3/netlib-java-0.9.3.jar:/Users/velrok/.m2/repository/gui-diff/gui-diff/0.4.0/gui-diff-0.4.0.jar:/Users/velrok/.m2/repository/junit/junit/4.10/junit-4.10.jar:/Users/velrok/.m2/repository/org/apache/poi/poi-ooxml/3.9/poi-ooxml-3.9.jar:/Users/velrok/.m2/repository/xpp3/xpp3_min/1.1.4c/xpp3_min-1.1.4c.jar:/Users/velrok/.m2/repository/org/bouncycastle/bcprov-jdk14/1.38/bcprov-jdk14-1.38.jar:/Users/velrok/.m2/repository/org/codehaus/jackson/jackson-mapper-asl/1.8.2/jackson-mapper-asl-1.8.2.jar:/Users/velrok/.m2/repository/net/sf/opencsv/opencsv/2.3/opencsv-2.3.jar:/Users/velrok/.m2/repository/net/sourceforge/parallelcolt/parallelcolt/0.10.0/parallelcolt-0.10.0.jar:/Users/velrok/.m2/repository/commons-httpclient/commons-httpclient/3.0.1/commons-httpclient-3.0.1.jar:/Users/velrok/.m2/repository/javax/servlet/servlet-api/2.5/servlet-api-2.5.jar:/Users/velrok/.m2/repository/evalive/evalive/1.1.0/evalive-1.1.0.jar:/Users/velrok/.m2/repository/com/github/rwl/COLAMDJ/1.0.1/COLAMDJ-1.0.1.jar:/Users/velrok/.m2/repository/org/apache/lucene/lucene-analyzers/3.6.0/lucene-analyzers-3.6.0.jar:/Users/velrok/.m2/repository/org/eclipse/jetty/orbit/javax.servlet/2.5.0.v201103041518/javax.servlet-2.5.0.v201103041518.jar:/Users/velrok/.m2/repository/org/clojure/tools.trace/0.7.5/tools.trace-0.7.5.jar:/Users/velrok/.m2/repository/ring/ring-servlet/1.1.8/ring-servlet-1.1.8.jar:/Users/velrok/.m2/repository/org/apache/commons/commons-math/2.2/commons-math-2.2.jar:/Users/velrok/.m2/repository/net/sourceforge/parallelcolt/optimization/1.0/optimization-1.0.jar:/Users/velrok/.m2/repository/commons-lang/commons-lang/2.6/commons-lang-2.6.jar:/Users/velrok/.m2/repository/net/sourceforge/csparsej/csparsej/1.1.1/csparsej-1.1.1.jar:/Users/velrok/.m2/repository/net/sourceforge/f2j/arpack_combined_all/0.1/arpack_combined_all-0.1.jar:/Users/velrok/.m2/repository/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar:/Users/velrok/.m2/repository/org/clojure/data.json/0.2.1/data.json-0.2.1.jar:/Users/velrok/.m2/repository/com/github/rwl/BTFJ/1.0.1/BTFJ-1.0.1.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-xml/1.7/batik-xml-1.7.jar:/Users/velrok/.m2/repository/net/sourceforge/jplasma/jplasma/1.2.0/jplasma-1.2.0.jar:/Users/velrok/.m2/repository/net/sourceforge/jplasma/core-lapack/0.1/core-lapack-0.1.jar:/Users/velrok/.m2/repository/org/clojure/math.combinatorics/0.0.3/math.combinatorics-0.0.3.jar:/Users/velrok/.m2/repository/com/github/rwl/JKLU/1.0.0/JKLU-1.0.0.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-util/1.7/batik-util-1.7.jar:/Users/velrok/.m2/repository/org/apache/xmlbeans/xmlbeans/2.3.0/xmlbeans-2.3.0.jar:/Users/velrok/.m2/repository/org/scilab/forge/jlatexmath/0.9.6/jlatexmath-0.9.6.jar:/Users/velrok/.m2/repository/us/bpsm/edn-java/0.4.0/edn-java-0.4.0.jar:/Users/velrok/.m2/repository/clout/clout/1.0.1/clout-1.0.1.jar:/Users/velrok/.m2/repository/org/clojure/core.incubator/0.1.0/core.incubator-0.1.0.jar:/Users/velrok/.m2/repository/clojureql/clojureql/1.0.4/clojureql-1.0.4.jar:/Users/velrok/.m2/repository/incanter/incanter-core/1.5.0/incanter-core-1.5.0.jar:/Users/velrok/.m2/repository/org/apache/mahout/commons/commons-cli/2.0-mahout/commons-cli-2.0-mahout.jar:/Users/velrok/.m2/repository/org/apache/poi/poi/3.9/poi-3.9.jar:/Users/velrok/.m2/repository/org/bouncycastle/bcmail-jdk14/1.38/bcmail-jdk14-1.38.jar:/Users/velrok/.m2/repository/xml-apis/xml-apis/1.3.04/xml-apis-1.3.04.jar:/Users/velrok/.m2/repository/incanter/incanter/1.5.0/incanter-1.5.0.jar:/Users/velrok/.m2/repository/com/thoughtworks/xstream/xstream/1.3.1/xstream-1.3.1.jar:/Users/velrok/.m2/repository/org/clojars/trptcolin/sjacket/0.1.3/sjacket-0.1.3.jar:/Users/velrok/.m2/repository/commons-digester/commons-digester/1.8/commons-digester-1.8.jar:/Users/velrok/.m2/repository/incanter/incanter-svg/1.5.0/incanter-svg-1.5.0.jar:/Users/velrok/.m2/repository/jfree/jcommon/1.0.12/jcommon-1.0.12.jar:/Users/velrok/.m2/repository/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar:/Users/velrok/.m2/repository/incanter/incanter-charts/1.5.0/incanter-charts-1.5.0.jar:/Users/velrok/.m2/repository/org/apache/hadoop/hadoop-core/0.20.204.0/hadoop-core-0.20.204.0.jar:/Users/velrok/.m2/repository/clj-time/clj-time/0.5.1/clj-time-0.5.1.jar:/Users/velrok/.m2/repository/org/clojure/tools.macro/0.1.0/tools.macro-0.1.0.jar:/Users/velrok/.m2/repository/fresh/fresh/1.0.2/fresh-1.0.2.jar:/Users/velrok/.m2/repository/com/lowagie/itext/2.1.7/itext-2.1.7.jar:/Users/velrok/.m2/repository/org/uncommons/maths/uncommons-maths/1.2.2/uncommons-maths-1.2.2.jar:/Users/velrok/.m2/repository/commons-io/commons-io/2.1/commons-io-2.1.jar:/Users/velrok/.m2/repository/dom4j/dom4j/1.6.1/dom4j-1.6.1.jar:/Users/velrok/.m2/repository/speclj/speclj/2.5.0/speclj-2.5.0.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-dom/1.7/batik-dom-1.7.jar:/Users/velrok/.m2/repository/jline/jline/2.11/jline-2.11.jar:/Users/velrok/.m2/repository/clojure-csv/clojure-csv/2.0.0-alpha2/clojure-csv-2.0.0-alpha2.jar:/Users/velrok/.m2/repository/incanter/jcommon/1.0.16/jcommon-1.0.16.jar:/Users/velrok/.m2/repository/incanter/incanter-io/1.5.0/incanter-io-1.5.0.jar:/Users/velrok/.m2/repository/incanter/incanter-sql/1.5.0/incanter-sql-1.5.0.jar:/Users/velrok/.m2/repository/org/bouncycastle/bctsp-jdk14/1.38/bctsp-jdk14-1.38.jar:/Users/velrok/.m2/repository/xalan/xalan/2.6.0/xalan-2.6.0.jar:/Users/velrok/.m2/repository/slingshot/slingshot/0.10.3/slingshot-0.10.3.jar:/Users/velrok/.m2/repository/commons-beanutils/commons-beanutils/1.7.0/commons-beanutils-1.7.0.jar:/Users/velrok/.m2/repository/ring/ring-core/1.1.7/ring-core-1.1.7.jar:/Users/velrok/.m2/repository/congomongo/congomongo/0.3.3/congomongo-0.3.3.jar:/Users/velrok/.m2/repository/net/mikera/randomz/0.1.0/randomz-0.1.0.jar:/Users/velrok/.m2/repository/org/jblas/jblas/1.2.3/jblas-1.2.3.jar:/Users/velrok/.m2/repository/org/clojure/clojure/1.5.0/clojure-1.5.0.jar:/Users/velrok/.m2/repository/mmargs/mmargs/1.2.0/mmargs-1.2.0.jar:/Users/velrok/.m2/repository/bouncycastle/bcmail-jdk14/138/bcmail-jdk14-138.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-svggen/1.7/batik-svggen-1.7.jar:/Users/velrok/.m2/repository/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar:/Users/velrok/.m2/repository/incanter/incanter-excel/1.5.0/incanter-excel-1.5.0.jar:/Users/velrok/.m2/repository/org/eclipse/jetty/jetty-http/7.6.1.v20120215/jetty-http-7.6.1.v20120215.jar:/Users/velrok/.m2/repository/com/google/guava/guava/r09/guava-r09.jar:/Users/velrok/.m2/repository/net/cgrand/regex/1.1.0/regex-1.1.0.jar:/Users/velrok/.m2/repository/org/codehaus/jackson/jackson-core-asl/1.8.2/jackson-core-asl-1.8.2.jar:/Users/velrok/.m2/repository/incanter/incanter-latex/1.5.0/incanter-latex-1.5.0.jar:/Users/velrok/.m2/repository/org/eclipse/jetty/jetty-util/7.6.1.v20120215/jetty-util-7.6.1.v20120215.jar:/Users/velrok/.m2/repository/ring/ring-jetty-adapter/1.1.8/ring-jetty-adapter-1.1.8.jar:/Users/velrok/.m2/repository/org/apache/poi/poi-ooxml-schemas/3.9/poi-ooxml-schemas-3.9.jar:/Users/velrok/.m2/repository/commons-codec/commons-codec/1.6/commons-codec-1.6.jar:/Users/velrok/.m2/repository/compojure/compojure/1.1.5/compojure-1.1.5.jar:/Users/velrok/.m2/repository/org/clojars/gjahad/debug-repl/0.3.1/debug-repl-0.3.1.jar:/Users/velrok/.m2/repository/org/mongodb/mongo-java-driver/2.9.3/mongo-java-driver-2.9.3.jar:/Users/velrok/.m2/repository/print-foo/print-foo/0.3.3/print-foo-0.3.3.jar:/Users/velrok/.m2/repository/org/clojure/java.jdbc/0.2.3/java.jdbc-0.2.3.jar:/Users/velrok/.m2/repository/org/eclipse/jetty/jetty-server/7.6.1.v20120215/jetty-server-7.6.1.v20120215.jar:/Users/velrok/.m2/repository/joda-time/joda-time/2.2/joda-time-2.2.jar:/Users/velrok/.m2/repository/swingrepl/swingrepl/1.3.0/swingrepl-1.3.0.jar:/Users/velrok/.m2/repository/stax/stax-api/1.0.1/stax-api-1.0.1.jar:/Users/velrok/.m2/repository/net/sourceforge/jtransforms/jtransforms/2.4.0/jtransforms-2.4.0.jar:/Users/velrok/.m2/repository/incanter/jfreechart/1.0.13-no-gnujaxp/jfreechart-1.0.13-no-gnujaxp.jar:/Users/velrok/.m2/repository/net/mikera/vectorz-clj/0.7.0/vectorz-clj-0.7.0.jar:/Users/velrok/.m2/repository/commons-cli/commons-cli/1.2/commons-cli-1.2.jar:/Users/velrok/.m2/repository/xml-apis/xml-apis-ext/1.3.04/xml-apis-ext-1.3.04.jar:/Users/velrok/.m2/repository/org/eclipse/jetty/jetty-io/7.6.1.v20120215/jetty-io-7.6.1.v20120215.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-awt-util/1.7/batik-awt-util-1.7.jar:/Users/velrok/.m2/repository/com/github/rwl/AMDJ/1.0.1/AMDJ-1.0.1.jar:/Users/velrok/.m2/repository/org/apache/mahout/mahout-core/0.7/mahout-core-0.7.jar:/Users/velrok/.m2/repository/commons-beanutils/commons-beanutils-core/1.8.0/commons-beanutils-core-1.8.0.jar:/Users/velrok/.m2/repository/org/apache/lucene/lucene-core/3.6.0/lucene-core-3.6.0.jar:/Users/velrok/.m2/repository/incanter/incanter-mongodb/1.5.0/incanter-mongodb-1.5.0.jar:/Users/velrok/.m2/repository/net/mikera/mathz/0.1.0/mathz-0.1.0.jar:/Users/velrok/.m2/repository/incanter/incanter-pdf/1.5.0/incanter-pdf-1.5.0.jar:/Users/velrok/.m2/repository/net/mikera/vectorz/0.10.0/vectorz-0.10.0.jar:/Users/velrok/.m2/repository/org/apache/mahout/mahout-math/0.7/mahout-math-0.7.jar:/Users/velrok/.m2/repository/org/clojure/tools.cli/0.2.2/tools.cli-0.2.2.jar:/Users/velrok/.m2/repository/commons-fileupload/commons-fileupload/1.2.1/commons-fileupload-1.2.1.jar:/Users/velrok/.m2/repository/net/mikera/core.matrix/0.4.0/core.matrix-0.4.0.jar:/Users/velrok/.m2/repository/commons-configuration/commons-configuration/1.6/commons-configuration-1.6.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-css/1.7/batik-css-1.7.jar:/Users/velrok/.m2/repository/org/apache/xmlgraphics/batik-ext/1.7/batik-ext-1.7.jar:/Users/velrok/.m2/repository/incanter/incanter-zoo/1.5.0/incanter-zoo-1.5.0.jar:/Users/velrok/.m2/repository/bouncycastle/bcprov-jdk14/138/bcprov-jdk14-138.jar:/Users/velrok/.m2/repository/org/danlarkin/clojure-json/1.1/clojure-json-1.1.jar:/Users/velrok/.m2/repository/ordered/ordered/1.2.0/ordered-1.2.0.jar:/Users/velrok/.m2/repository/org/slf4j/slf4j-api/1.6.1/slf4j-api-1.6.1.jar:/Users/velrok/.m2/repository/org/eclipse/jetty/jetty-continuation/7.6.1.v20120215/jetty-continuation-7.6.1.v20120215.jar:/Users/velrok/.m2/repository/net/cgrand/parsley/0.9.1/parsley-0.9.1.jar:/Users/velrok/.m2/repository/clatrix/clatrix/0.3.0/clatrix-0.3.0.jar
alexott commented 11 years ago

that's very strange - you have core.matrix 0.4 as dependency, while you should have core.matrix 0.7.2. I've just created an empty project that uses incanter 1.5.0 and all dependencies were correct there, downloading core.matrix 0.7.2.

What lein deps :tree (from fresh leiningen) will output?

You can also try to perform rm -rf ~/.m2/repository/incanter ~/.m2/repository/clatrix ~/.m2/repository/net/mikera and re-download

Velrok commented 11 years ago

I had core.matrix 0.7.2 as a fixed dependency in my project.clj

I removed it and all the stuff in ~/.m2/repository. However I still get the same error. I will clean up some more and write again.

Thanks so far.

Am 14.06.2013 um 14:58 schrieb Alex Ott notifications@github.com:

that's very strange - you have core.matrix 0.4 as dependency, while you should have core.matrix 0.7.2. I've just created an empty project that uses incanter 1.5.0 and all dependencies were correct there, downloading core.matrix 0.7.2.

What lein deps :tree (from fresh leiningen) will output?

You can also try to perform rm -rf ~/.m2/repository/incanter ~/.m2/repository/clatrix ~/.m2/repository/net/mikera and re-download

— Reply to this email directly or view it on GitHub.

alexott commented 11 years ago

Can you paste what lein deps :tree prints for you?

Velrok commented 11 years ago

Sure:

 [clj-time "0.5.1"]
   [joda-time "2.2"]
 [clojure-csv "2.0.0-alpha2"]
 [compojure "1.1.5"]
   [clout "1.0.1"]
   [org.clojure/core.incubator "0.1.0"]
   [org.clojure/tools.macro "0.1.0"]
   [ring/ring-core "1.1.7"]
     [commons-codec "1.6"]
     [commons-fileupload "1.2.1"]
     [commons-io "2.1"]
     [javax.servlet/servlet-api "2.5"]
 [evalive "1.1.0"]
 [incanter "1.5.0"]
   [incanter/incanter-charts "1.5.0"]
     [incanter/jfreechart "1.0.13-no-gnujaxp"]
       [incanter/jcommon "1.0.16"]
   [incanter/incanter-core "1.5.0"]
     [clatrix "0.3.0" :exclusions [[org.clojure/clojure]]]
       [org.jblas/jblas "1.2.3"]
       [slingshot "0.10.3"]
     [org.clojure/math.combinatorics "0.0.3" :exclusions [[org.clojure/clojure]]]
   [incanter/incanter-excel "1.5.0"]
     [org.apache.poi/poi-ooxml "3.9"]
       [dom4j "1.6.1"]
       [org.apache.poi/poi-ooxml-schemas "3.9"]
         [org.apache.xmlbeans/xmlbeans "2.3.0"]
           [stax/stax-api "1.0.1"]
       [org.apache.poi/poi "3.9"]
   [incanter/incanter-io "1.5.0"]
     [net.sf.opencsv/opencsv "2.3"]
     [org.danlarkin/clojure-json "1.1" :exclusions [[org.clojure/clojure] [org.clojure/clojure-contrib]]]
   [incanter/incanter-latex "1.5.0"]
     [org.scilab.forge/jlatexmath "0.9.6"]
   [incanter/incanter-mongodb "1.5.0"]
     [congomongo "0.3.3" :exclusions [[org.clojure/clojure] [org.clojure/clojure-contrib]]]
       [org.mongodb/mongo-java-driver "2.9.3"]
   [incanter/incanter-pdf "1.5.0"]
     [com.lowagie/itext "2.1.7"]
       [bouncycastle/bcmail-jdk14 "138"]
       [bouncycastle/bcprov-jdk14 "138"]
       [org.bouncycastle/bctsp-jdk14 "1.38"]
         [org.bouncycastle/bcmail-jdk14 "1.38"]
         [org.bouncycastle/bcprov-jdk14 "1.38"]
   [incanter/incanter-sql "1.5.0"]
     [clojureql "1.0.4" :exclusions [[org.clojure/clojure]]]
       [org.clojure/java.jdbc "0.2.3"]
   [incanter/incanter-svg "1.5.0"]
     [org.apache.xmlgraphics/batik-awt-util "1.7"]
     [org.apache.xmlgraphics/batik-dom "1.7"]
       [org.apache.xmlgraphics/batik-css "1.7"]
       [org.apache.xmlgraphics/batik-ext "1.7"]
       [xalan "2.6.0"]
       [xml-apis/xml-apis-ext "1.3.04"]
       [xml-apis "1.3.04"]
     [org.apache.xmlgraphics/batik-svggen "1.7"]
     [org.apache.xmlgraphics/batik-util "1.7"]
     [org.apache.xmlgraphics/batik-xml "1.7"]
   [incanter/incanter-zoo "1.5.0"]
   [jline "2.11"]
   [swingrepl "1.3.0" :exclusions [[org.clojure/clojure] [org.clojure/clojure-contrib]]]
 [net.mikera/vectorz-clj "0.7.0"]
   [net.mikera/core.matrix "0.4.0"]
   [net.mikera/vectorz "0.10.0"]
     [net.mikera/mathz "0.1.0"]
     [net.mikera/randomz "0.1.0"]
     [us.bpsm/edn-java "0.4.0"]
 [net.sourceforge.parallelcolt/parallelcolt "0.10.0"]
   [com.github.rwl/JKLU "1.0.0"]
     [com.github.rwl/AMDJ "1.0.1"]
     [com.github.rwl/BTFJ "1.0.1"]
     [com.github.rwl/COLAMDJ "1.0.1"]
   [com.googlecode.netlib-java/netlib-java "0.9.3"]
   [junit "4.10"]
     [org.hamcrest/hamcrest-core "1.1"]
   [net.sourceforge.csparsej/csparsej "1.1.1"]
   [net.sourceforge.jplasma/jplasma "1.2.0"]
     [net.sourceforge.f2j/arpack_combined_all "0.1"]
     [net.sourceforge.jplasma/core-lapack "0.1"]
   [net.sourceforge.jtransforms/jtransforms "2.4.0"]
   [net.sourceforge.parallelcolt/optimization "1.0"]
 [org.apache.mahout/mahout-core "0.7"]
   [com.thoughtworks.xstream/xstream "1.3.1"]
     [xpp3/xpp3_min "1.1.4c"]
   [commons-lang "2.6"]
   [org.apache.commons/commons-math "2.2"]
   [org.apache.hadoop/hadoop-core "0.20.204.0" :exclusions [[net.sf.kosmosfs/kfs] [org.mortbay.jetty/jetty] [org.mortbay.jetty/jetty-util] [hsqldb] [commons-el] [junit] [oro] [org.mortbay.jetty/jsp-2.1] [org.mortbay.jetty/jsp-api-2.1] [org.mortbay.jetty/servlet-api-2.5] [commons-net] [tomcat/jasper-runtime] [tomcat/jasper-compiler] [xmlenc] [net.java.dev.jets3t/jets3t] [org.eclipse.jdt/core]]]
     [commons-cli "1.2"]
     [commons-configuration "1.6"]
       [commons-beanutils/commons-beanutils-core "1.8.0"]
       [commons-collections "3.2.1"]
       [commons-digester "1.8"]
         [commons-beanutils "1.7.0"]
     [commons-httpclient "3.0.1"]
       [commons-logging "1.0.3"]
   [org.apache.lucene/lucene-analyzers "3.6.0"]
   [org.apache.lucene/lucene-core "3.6.0"]
   [org.apache.mahout.commons/commons-cli "2.0-mahout"]
   [org.apache.mahout/mahout-math "0.7"]
     [com.google.guava/guava "r09"]
     [org.uncommons.maths/uncommons-maths "1.2.2" :exclusions [[jfree/jfreechart]]]
       [jfree/jcommon "1.0.12"]
   [org.codehaus.jackson/jackson-core-asl "1.8.2"]
   [org.codehaus.jackson/jackson-mapper-asl "1.8.2"]
   [org.slf4j/slf4j-api "1.6.1"]
 [org.clojars.gjahad/debug-repl "0.3.1"]
 [org.clojure/clojure "1.5.0"]
 [org.clojure/data.json "0.2.1"]
 [org.clojure/tools.cli "0.2.2"]
 [org.clojure/tools.trace "0.7.5"]
 [print-foo "0.3.3"]
   [gui-diff "0.4.0"]
     [ordered "1.2.0"]
     [org.clojars.trptcolin/sjacket "0.1.3" :exclusions [[org.clojure/clojure]]]
       [net.cgrand/parsley "0.9.1"]
       [net.cgrand/regex "1.1.0"]
   [org.clojars.runa/conjure "2.2.0"]
 [ring/ring-jetty-adapter "1.1.8"]
   [org.eclipse.jetty/jetty-server "7.6.1.v20120215"]
     [org.eclipse.jetty.orbit/javax.servlet "2.5.0.v201103041518"]
     [org.eclipse.jetty/jetty-continuation "7.6.1.v20120215"]
     [org.eclipse.jetty/jetty-http "7.6.1.v20120215"]
       [org.eclipse.jetty/jetty-io "7.6.1.v20120215"]
         [org.eclipse.jetty/jetty-util "7.6.1.v20120215"]
   [ring/ring-servlet "1.1.8"]
 [speclj "2.5.0"]
   [fresh "1.0.2"]
   [mmargs "1.2.0"]
alexott commented 11 years ago

I think, that the problem is that you're using [net.mikera/vectorz-clj "0.7.0"], that has old core.matrixas dependency. Please, exclude it from this dependency with[net.mikera/vectorz-clj "0.7.0"] :exclusions [[net.mikera/core.matrix]]`

Velrok commented 11 years ago

Ah Thanks.

All the best, Waldemar

Am 15.06.2013 um 13:30 schrieb Alex Ott notifications@github.com:

I think, that the problem is that you're using [net.mikera/vectorz-clj "0.7.0"], that has old core.matrixas dependency. Please, exclude it from this dependency with[net.mikera/vectorz-clj "0.7.0"] :exclusions [[net.mikera/core.matrix]]`

— Reply to this email directly or view it on GitHub.