What are the norms for creating JPackage installer Java application on Linux ?
I have created an installer for Windows, and am now creating one on Linux (using Ubuntu)
So far I have:
-i target/Jaikoz/buildLinux
--main-class com.jthink.jaikoz.Jaikoz
--name Jaikoz
--main-jar lib/jaikoz.jar
--app-version 10.1.0
--copyright "Copyright 2020 JThink Ltd, United Kingdom"
--arguments "-l2 -m2 -f" --java-options "-Dhttps.protocols=TLSv1.1,TLSv1.2"
--java-options "--add-opens java.base/java.lang=ALL-UNNAMED"
--vendor JThink
--icon "Jaikoz64.png"
--install-dir /opt
--linux-menu-group Jaikoz
--linux-shortcut
for creating a debian installer, it works (installs not yet running properly) but I am confused about a number of things, I am not so familiar with the linux environment.
- Cannot see the effect of linux-menu-group or linux-shortcut
- Should I be using linux-menu-group or linux-app-category, and if so is it a predefined list ?