I have a maven-based JavaFX application that's ready for deployment. I found this great article What is the best way to deploy JavaFX application, create JAR and self-contained applications and native installers on Stackoverflow that could have answered my question, however, it's dated to 2015 and the link for the article of interest has been removed. Any insights will be great.
Asked
Active
Viewed 252 times
0
-
see https://docs.oracle.com/en/java/javase/14/jpackage/ – James_D Sep 03 '20 at 15:01
-
Or https://github.com/dlemmermann/JPackageScriptFX – mipa Sep 03 '20 at 15:41
-
Thanks, I will look at these links more in-depth, but by a cursory glance I didn't see any references to Maven Plugin, which I am interested in, so I can leverage the Netbeans IDE to create the deployment without the use of Jpackage. The URL that I embedded in my original post actually had a link to the Maven plugin but as I mentioned, the link no longer exists. – Anthony Sep 03 '20 at 16:02
-
`jpackage` is relatively new, and I haven't yet seen a maven plugin for it (though that doesn't mean one doesn't exist somewhere). There are plugins for jlink, which would minimize the amount you needed to do outside of the IDE to build the installer package. (One way or another, though, you should use jpackage to create the native bundle, whether it's directly from the command line, through a script, or through a maven or gradle plugin.) – James_D Sep 03 '20 at 16:17
-
James_D, thanks as always – Anthony Sep 03 '20 at 17:39