I know this question is probably very easy for you, but I have real problems with it.
When I put, for example, apache commons-lang jar library into project's folder lib that is on the same level as src folder and add this jar library into project's build patch, eclipse compiles everything without errors and it puts all sources into exported .jar file (including lib folder and the contents).
BUT, when I start application, I am getting this error:
23:55:42 [SEVERE] Exception in thread "main"
23:55:42 [SEVERE] java.lang.NoClassDefFoundError: org/apache/commons/lang3/StringUtils
Can someone explain me why JVM does not see libraries that I have in lib folder and that are defined in project's build patch?
What I have to do to make my compiled application see this jar files?