The task jpackageImage creates an application image.
The task jpackage creates an MSI Installer of the application image (at least on Windows).
Requirement: I need to sign the executable which is wrapped in the MSI installer.
I can sign the MSI installer after the task jpackage is finished. However, virus scanner seem to need a signed executable in some cases as well. Hence I tried to first run jpackageImage , afterwards I signed the executable and after that I called jpackage to pack the result.
Unfortunately jpackage depends on jpackageImage and creates again a new application image which is not signed. How can I achieve that the already existing application image is used instead of creating a new one.
Thanks for any hint!