Executing jar file
hi,
it's basic question !!!!
i have the followin structure :
myApp
/lib/jar1.jar
/lib/jar2.jar
bin/com/package/main.class
bin/com/package/class1.class
bin/com/package/subpackage/class2.class
i would like to create a runnable jar file :
so i do an export from eclipse, i end up with a jar file with a manifest file not including the class-path information.
so i extract the manifest i add the following information :
Class-Path: lib/jar1.jar lib/jar2.jar
and finally i re-add the manifest file to the jar file.
when i run my app : java -jar myApp.jar , i have the following error, class not found org.apache.commons/.... this class belongs to one of my jar file located in the lib directory, i don't understand, perhaps i forgot something
thanks for your help

