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=19293>. 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=19293 jar task does not remove obsolete entries Summary: jar task does not remove obsolete entries Product: Ant Version: 1.5.3 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Core tasks AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] 1) Create a jar file with the jar task. 2) Remove a file from the source directory. 3) Rerun the jar task with update="yes". 4) Even though the jar task says it has updated the jar file, the deleted file continues to exists in the jar file. <jar jarfile="dist/test.jar" update="yes" > <fileset dir="build" includes="org/test/**"/> </jar>