https://bz.apache.org/bugzilla/show_bug.cgi?id=63243
Stefan Bodewig <bode...@apache.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #2 from Stefan Bodewig <bode...@apache.org> --- and the workaround is to use <archives> instead of <zipgroupfileset> which allows you to take fine-grained control over what you include <jar destfile="out.jar"> <zipgroupfileset dir="some-jars"> <include name="a.jar" /> <include name="b.jar" /> </zipgroupfileset> <archives> <zips> <fileset dir="some-jars"> <include name="c.jar" /> </fileset> </zips> <not> <or> <name name="META-INF/LICENSE.txt"/> <name name="META-INF/NOTICE.txt"/> </or> </not> </archives> </jar> -- You are receiving this mail because: You are the assignee for the bug.