FibreFoX / javafx-gradle-plugin

Gradle plugin for JavaFX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

launcherArguments for secondaryLaunchers

vhkrausser opened this issue · comments

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));

Indeed, thanks for catching this 👍

Btw: this even is inside javafx-maven-plugin

This is now fixed :) should take a bit to hit maven-central