Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix issue with IBM semu 11 #288

Merged
merged 1 commit into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/it/projects/mexec-29-wrong-signature/verify.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@
*/

def buildLog = new File( basedir, 'build.log' )
assert buildLog.text.contains('java.lang.NoSuchMethodException: no such method: org.codehaus.mojo.exec.Main.main(String[])void')
assert buildLog.text.contains(
'java.lang.Exception: The specified mainClass doesn\'t contain a main method with appropriate signature.')
2 changes: 1 addition & 1 deletion src/main/java/org/codehaus/mojo/exec/ExecJavaMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public void run()

mainHandle.invoke( arguments );
}
catch ( IllegalAccessException e )
catch ( IllegalAccessException | NoSuchMethodException | NoSuchMethodError e )
{ // just pass it on
Thread.currentThread().getThreadGroup().uncaughtException( Thread.currentThread(),
new Exception( "The specified mainClass doesn't contain a main method with appropriate signature.",
Expand Down