Java Mailing List Archive

http://www.ant-tasks.com/

Home » Ant Users List »

Class-Path not recognised from MANIFEST.MF

Ravi Roy

2008-05-22

Replies: Find Java Web Hosting

Author LoginPost Reply
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: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)

©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.