Owner:
Tamara Cook
Creates native installers for java apps using Jpackage, Jlink, and Jdeps
https://infolektuell.github.io/gradle-jpackage/
Sources: https://github.com/infolektuell/gradle-jpackage.git
Version 0.3.0
Created 02 February 2026.
- Added a jlink configuration to declare jlink-specific dependencies, e.g., .jmod files that should replace their jar equivalent that is used during development. - The plugin is able to detect the main module, so it doesn't need to be set explicitly in the build script. Setting it saves a bit of build time, but it's not necessary.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.infolektuell.jpackage") version "0.3.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("de.infolektuell.jpackage:de.infolektuell.jpackage.gradle.plugin:0.3.0") }It can then be applied in the precompiled script plugin:plugins { id("de.infolektuell.jpackage") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.infolektuell.jpackage:de.infolektuell.jpackage.gradle.plugin:0.3.0") } } apply(plugin = "de.infolektuell.jpackage") - Applying plugins to all subprojects .