Skip to content

Instantly share code, notes, and snippets.

@kutami
Last active February 23, 2017 16:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kutami/aeb872135e18751c7947cf9b529b03b6 to your computer and use it in GitHub Desktop.
Save kutami/aeb872135e18751c7947cf9b529b03b6 to your computer and use it in GitHub Desktop.
org.codehaus.plexus.classworlds.launcher.Launcher
public static void main( String[] args )
{
try
{
int exitCode = mainWithExitCode( args );
System.exit( exitCode );
}
catch ( Exception e )
{
e.printStackTrace();
System.exit( 100 );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment