NoClassDefFound Exception, when using imported jar from libs

80 Views Asked by At

I am trying referencing a libs folder in my project.

1.) I created a simple jar with one single dummy class ImportableDummy.java and exported the project as a jar.

Jar Project:

enter image description here

2.) Then I put the jar into the libs folder inside my Project. The lib is then listed under "Private Libraries":

Jar referencing Project:

enter image description here enter image description here

3.) At least I doublechecked, that the "PrivateLibraries" are marked as "exported"

enter image description here

QUESTION:

Still there is a java.lang.NoClassDefFoundError: com.test.my.ImportableDummy exception, when I run the App. During compileTime the class is perfectly found by the compiler.

What am I missing?

  • P.S. A tried to create a separate lib project for the jar too, with the same result.
  • P.P.S. I started Eclipse with the -clean argument with no result
1

There are 1 best solutions below

0
On

The Problem was, that the Jar was build with compiler 1.7

It should be compiler 1.6 instead.

enter image description here