DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18736>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18736

manifest task will not create Name entry

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2003-04-06 15:09 -------
A name attribute defines a section, so you can't put name attributes in a
section. Ant will do this for you. The example you gave is invalid because it
tries to define two names in a section. Try this instead

    <manifest file="unjar/META-INF/MANIFEST.MF" mode="update">
      <section name="APP-INF/lib/FOBSVC.jar">
      </section>
      
      <section name="APP-INF/lib/FOBSVCObjects.jar">
      </section>
    </manifest>

Reply via email to