problm with MANIFEST.MF in jar
- by Atul
hi
I have created jar in the following folder:
/usr/local/bin/niidle.jar.
And my MANIFEST.MF file is as follows:
Manifest-Version: 1.0
Main-Class: com.ensarm.niidle.web.scraper.NiidleScrapeManager
Class-Path: hector-0.6.0-17.jar
And I verified that,this 'hector-0.6.0-17.jar' file is also present in the folder:
/Projects/EnwelibDatedOct13/Niidle/lib/hector-0.6.0-17.jar
I don't want to give full class-path name in MANIFEST.MF file,because
I have to run this jar on other's machine,so I gave only jar file
name 'Class-Path=hector-0.6.0-17.jar' in MANIFEST.MF file.
Inspite of mentioning the Class-Path in MANIFEST.MF file,
when I run this using command:
java -jar /usr/local/bin/niidle.jar arguments...
It is showing error massage:
--Exception in thread "main" java.lang.NoClassDefFoundError: me/prettyprint/hector/api/Serializer
at com.ensarm.niidle.web.scraper.NiidleScrapeManager.main(NiidleScrapeManager.java:21)
Caused by: java.lang.ClassNotFoundException: me.prettyprint.hector.api.Serializer
at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
... 1 more
Please give me solution for this error message..