-
Notifications
You must be signed in to change notification settings - Fork 59
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
Configuration to provide jlink options #104
Comments
As explained in a previous issue, we need this kind of options in projects where the required modules are determined dynamically by maven. Using the newly merged PR 92, the
This brings all maven dependencies into the module graph. But we now need the ability to tell
Or you could consider that all modules that were needed on the module path to Another related issue: since |
The current
<option>
configuration is used to provide options to thejava
command for bothjavafx:run
andjavafx:jlink
goals. In case ofjavafx:jlink
, the options are passed to the launcher script which seems to work well.However, user may need to pass options to
jlink
command. There is no way to do it right now.My suggestion is to include a new configuration
jlinkOptions
which would enable users to define flags which will be directly passed to thejlink
command.The text was updated successfully, but these errors were encountered: