clojurewerkz / envision

Clojure Data Visualisation library, based on Statistiker and D3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UnsupportedClassVersionError

Eleonore9 opened this issue · comments

I tried the example code from the Readme file and got those errors when I compiled =(

2. Unhandled clojure.lang.Compiler$CompilerException
   java.lang.UnsupportedClassVersionError:
   clojurewerkz/statistiker/DoublePointWithMeta : Unsupported
   major.minor version 52.0

1. Caused by java.lang.UnsupportedClassVersionError
   clojurewerkz/statistiker/DoublePointWithMeta : Unsupported
   major.minor version 52.0

This means your JDK version is older than what this project was compiled for.

On 1 abr 2016, at 20:44, Eleonore notifications@github.com wrote:

I tried the example code from the Readme file and got those errors when I compiled =(

  1. Unhandled clojure.lang.Compiler$CompilerException
    java.lang.UnsupportedClassVersionError:
    clojurewerkz/statistiker/DoublePointWithMeta : Unsupported
    major.minor version 52.0
  2. Caused by java.lang.UnsupportedClassVersionError
    clojurewerkz/statistiker/DoublePointWithMeta : Unsupported
    major.minor version 52.0

    You are receiving this because you are subscribed to this thread.
    Reply to this email directly or view it on GitHub

Class version 52 is used in JDK 8. Please try that.

Thanks Michael! I'll try that