-
-
Notifications
You must be signed in to change notification settings - Fork 71
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
Implements skip option or skipLaunch4j property #190
Conversation
@garretwilson does it meet your requirements? |
Without testing it, it looks like what I need. (See the typo I found above.) |
typo? |
I added a comment on line 802. Did it not show up? |
Nope, you must submit your review first |
I found it, already fixed :) |
* @return true to skip execution | ||
*/ | ||
private boolean skipExecution() { | ||
getLog().debug("skip = " + System.getProperty("skipLaunch4j")); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this a typo? Should it be "skip = " + skip
?
Oh! Good to know. (I've been reviewing using other platforms for the past few years.) Well, looks like you already caught it anyway. |
You can either use
<skip>true</skip>
in the configuration or provide-DskipLaunch4j
property to JVM.Closes #189