I'm attempting to bundle my Java app into a .dmg file. The plan is to sign and notarize my app for distribution on my website https://strides.co.nz.
I have downloaded Java 14 and have successfully created a path on bash profile. Some java commands are working on Terminal, but whenever I attempt to run jpackage I get "Command not found."
I am not overly familiar with macs and have limited command line knowledge due to being spoiled by Netbeans. Can someone give me some suggestions on what I am missing.
I am still doing a lot of research on why package will not run on my machine but still have absolutely nothing. I see that jpackage is present in the bin but cannot get it to run. This is what I get on my machine:
edwardbullock@Annettes-MacBook-Air ~ % java -version
openjdk version "14.0.1" 2020-04-14
OpenJDK Runtime Environment AdoptOpenJDK (build 14.0.1+7)
OpenJDK 64-Bit Server VM AdoptOpenJDK (build 14.0.1+7, mixed mode, sharing)
edwardbullock@Annettes-MacBook-Air ~ % jpackage --help
zsh: command not found: jpackage
edwardbullock@Annettes-MacBook-Air ~ %
I have tried running jpackage on my Windows PC, and jpackage is working on that machine. I seem to be missing something on the mac.