Plugin Configuration
Jpackage has many options to customize the application and the installer.
- Adding an app icon and other metadata
- Telling the installer to add a desktop shortcut
- Adding file associations
- Indicating that the app is a console application
- …
These options can be configured in the plugin’s jpackage DSL extension and in the tasks.
plugins { application id("de.infolektuell.jpackage") version "x.y.z"}
jpackage { isCommandLineApplication = true shortcut = true}plugins { id application id 'de.infolektuell.jpackage' version 'x.y.z'}
jpackage { isCommandLineApplication = true shortcut = true}