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=6521>.
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=6521

The jar tasks update option deletes the mainfest

           Summary: The jar tasks update option deletes the mainfest
           Product: Ant
           Version: 1.4.1
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: Core tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


The mainfest file is deleted when a jar file is updated. For example:

<jar jarfile="ex.jar" manifest="ex.mf" basedir="${classes.verified}"/>

OK: The jar file containts the manifest file specified. 

<jar jarfile="ex.jar" update="true" basedir="${media}"/>

BUG: The jar file no longer contains the manifest file.


Here is the obvoius workaround:
<jar jarfile="ex.jar" update="true" mainfest="ex.mf" basedir="${media}"/>

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

Reply via email to