Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=472144
--- Comment #2 from Thomas Moschny thomas.moschny@gmx.de 2008-11-19 03:22:42 EDT --- Furthermore, you (accidentally) transferred classes from .jar files from the 'source' distribution into the final rpm, which is strictly not allowed.
The reason is, that this command is wrong:
find -name '*.jar' -o -name '*.class' -exec rm -f '{}' ;
It needs to be changed to
find ( -name '*.jar' -o -name '*.class' ) -exec rm -f '{}' ;
in order to work as expected.