This error keeps bothering me for a long while. I need to export my java app to .jar and when I run it (java -jar test.jar) I get this error message. I've checked that the apache-core-4.3.3.jar is included, I've checked that it contains HttpEntity class, I've checked java build path and manifest but everything is OK.
The weirdest thing is that in my code I don't try to import org.apache.http.HttpEntity at all. And I've got only 3 classes so I wouldn't miss it.

Manifest file:
Manifest-Version: 1.0
Main-Class: Main
Classes:

EDIT
I export it like this, so I think imported jars' content is exported to my test.jar file thanks to Export Java source files and resources, am I right?

What is the next thing I should do?