Have a java program jar with all the required dependable resource jars exploded and is working fine using below command.
java -cp path/to/MyProgram.jar com.......myMainFile
Now trying to put all the dependency jars inside the lib folder inside the same jar(MyProgram.jar) using maven and I see the lib folder and all the dependencies inside the jar i.e
MyProgram.jar/lib/all dependencies jars
Now not sure how to run my program and need help with the same. When tried to run same program using below getting error as No Class Found (i.e dependable jar class file) . Not creating meta-inf file as I have multiple main class files in my jar and want to execute them individually.