I am mantaining an old java application which has dcm4che as its library. The dcm4che library is not just a jar file. It is a folder which contains jar files and other folders with some properties files and classes in different folders. I am using WindowsXP and java 1.6.
When we run our application, we need to put those folders, jar files into the classpath by doing something like these:
set CLASSPATH=.;%PROJ_HOME%\classes;^
%THIRDPARTY_HOME%\dcm4che;^
%THIRDPARTY_HOME%\dcm4che\classes;^
%THIRDPARTY_HOME%\dcm4che\resources;^
Now I try to put all of them into one jar file to simplify the sources control. So I create a manifest.txt file with the following content:
Class-Path: classes;resources;lib\dcm4che.jar;getopt.jar
Then I create a dcm4che.jar by running jar:
jar -cfm dcm4che.jar manifest.txt *
A dcm4che.jar is created. The I verify the result by extracting all contents and check the manifest file and my classpath is there:
Manifest-Version: 1.0
Class-Path: classes;resources;lib\dcm4che.jar;getopt.jar
Created-By: 1.6.0_25 (Sun Microsystems Inc.)
Then I modify the application classpath to point to the new generated dcm4che.jar and delete those older entries.
When I run it, I get NoClassDefFoundError. But that class is under the classes folder inside the new created jar file.
I am missing anything?