Skip to content
Advertisement

What does this ObjectWeb error mean: “Unsupported class file major version 56” and how do I fix it?

(Editors note: This is objectweb, not the JVM complaining. Be very sure before knee-jerk closing as duplicate)


I’m sort of reviving a project that was left in a broken state when I try to run the tests I get this error:

JavaScript

What does that mean? Any ideas how to fix it?

The Maven project includes:

JavaScript

but commenting out that plug in makes no difference.

The full backtrace looks like this:

JavaScript

Update: I changed the Maven configuration source and target to be Java 11 and Java 10, like this:

JavaScript

and in both cases, the error changed to:

JavaScript

So, I guess that version isn’t supported either.

Advertisement

Answer

You are using Java 12 (and compiling your code for it so the generated class files are only valid for Java 12 and newer).

The version of Objectweb which you are using under the covers does not support reading Java 12 classfiles (which is what version 56 corresponds to).

The easy fix is to reconfigure your build to compile for Java 11 or earlier depending on what version of Objectweb you need to use. Some experimentation may be necessary.

It may also be possible to update to latest version of objectweb if the issue has been fixed, but that may break other parts of your stack, so be certain to upgrade everything if you go this way.

Advertisement