Hello,
I've got a problem with dependencies of jar imported to local repository.
1. I have somefile.jar, in this .jar package I have another .jar files (dependencies of this jar)
2. I installed somefile.jar in local repository and included it in another project.
When I run project which uses class from somefile.jar, I've got ClassNotFound exception on all dependencies of somefile.jar.
When I use somefile.jar directly (from command line) everything's fine.
It looks like
Maven is not able to read dependencies from Manifest file of somefile.jar
Could you please help to fix it?
What should I do to make Maven read .jar's manifest and load dependencies of somefile.jar ?