Title: Message Title
Jesse Glick commented on an issue
Mojo / Bug MOJO-2037
java.lang.AssertionError: The file xyz.jar is corrupt or invalid
The 'Enforce Bytecode Version' rule cannot be used when running Maven with assertions enabled (-ea) due to

{code}
assert read != 8 : "The file" + f + " is corrupt or invalid";
{code}

which should read:

{code}
assert read == 8 : "The file" + f + " is corrupt or invalid";
{code}
--------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email

Reply via email to