I have a Java program that I can turn into an installer exe that makes an app exe
jpackage -t exe -i . -n compilerrunner --app-version 1.0 --win-dir-chooser --win-shortcut --main-jar compilerrunner.jar
I want the installer exe, to look like compilerrunner-installer-1.0.exe
and the actual application to look like compilerrunner-1.0.exe
, reading through jpackage I don't see a way to do that nor examples of others doing this. Currently my installer and my app have the same name compilerrunner-installer-1.0.exe
.
I don't want an alternative to jpackage, I know there are other ways, I am only looking for ways to do this with jpackage.