On Thu, May 22, 2008 at 10:29 AM, Ravi Roy <[EMAIL PROTECTED]> wrote:
>  <jar destfile="Application.jar" manifest="manifest.mf" update="false">
>   <fileset dir="${basedir}">
>     <include name="*com/**" />
>     <include name="App1.jar" />
>   </fileset>
>  </jar>

You are including App1.jar *inside* Application.jar. The default class
loader does not support such nesting. The Class-Path attribute refers
*files* (or URLs to those files), but App1.jar is not a file anymore,
it's just an entry inside the Application.jar file. --DD

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to