You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we specify a secundary launcher for the build with custom lauch parameters, all lauchers have the parameters from the latest configuration readed by the plugin.
This happens (I belive ) at line 212 of the JfxNativeWorker.
Where we read params.put(StandardBundlerParam.ARGUMENTS.getID(), new ArrayList<>(arguments));
Should be: secondaryLauncherGenerationMap.put(StandardBundlerParam.ARGUMENTS.getID(), new ArrayList<>(arguments));
The text was updated successfully, but these errors were encountered:
If we specify a secundary launcher for the build with custom lauch parameters, all lauchers have the parameters from the latest configuration readed by the plugin.
This happens (I belive ) at line
212
of theJfxNativeWorker
.Where we read
params.put(StandardBundlerParam.ARGUMENTS.getID(), new ArrayList<>(arguments));
Should be:
secondaryLauncherGenerationMap.put(StandardBundlerParam.ARGUMENTS.getID(), new ArrayList<>(arguments));
The text was updated successfully, but these errors were encountered: