Hi All,
My apologies if I am missing something obivious, I have the following
test build.xml, in which I am trying to create a executable JAR, I am
specifying the Class-Path which is needed by the application at
runtime but application reports NoClassDefFound error...
Class-Path and Main-Class attribute are fine the Manifest.MF.. But
looked very strange that is come with NoClassDefFoundError..
Does soembody knows the clue what is wrong ?
Thanks in advance.
Regards,
Ravi.
<project name="Test Executable application" default="main">
<target name="main" depends="manifest.creation">
<jar destfile="Application.jar" manifest="manifest.mf" update="false">
<fileset dir="${basedir}">
<include name="*com/**" />
<include name="App1.jar" />
</fileset>
</jar>
</target>
<target name="manifest.creation">
<manifest file="MANIFEST.MF">
<attribute name="Main-Class" value="com.maycompany.test.HelloMain" />
<attribute name="Class-Path" value="App1.jar" />
</manifest>
</target>
</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]