I want to add a simple click-through license to an exe-installer I create with the javafx-maven-plugin (version 8.1.3) which itself uses Inno Setup.
From what I understand from the Oracle documentation this can only be done with Inno Setup, not with MSI – which would be fine as well. In the Ant Task it seems one has to use a <fx:fileset>
with type license
:
Resources of type
license
are used as a source of content for a click-through license or a license embedded into the package.
Now I know that the icon for the application has to be placed in the folder src/main/deploy/windows/
. But is this also the folder where I have to place the license file? Will it be picked up automatically? And does it have to follow a specific naming convention ("license.rtf" for instance)?