I had the same problem and the solution is pretty simple. Just right-click on your project, select Properties → Java Build Path , then open the Libraries tab, click Add External JARs , and then select all the required libraries (those that received the error message, in my case it is derbyclient.jar), Confirm with OK . Then in the package explorer you will get Reference libraries , and there will be all additional libraries that need to be exported to an executable JAR file:

For unknown reasons, Eclipse will not add them automatically, even if you configured them correctly in Project → right-click → Run as → Run configurations → Class track . You must manually add all the libraries you need, with Add External JARs
source share