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.4.1 (latest)
Created 06 February 2026.
- Fix: Jlink doesn't fail anymore with automatic modules as dependencies.
Add this plugin to your build using the plugins DSL:
plugins {
id("de.infolektuell.jpackage") version "0.4.1"
}
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.4.1") }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.4.1") } } apply(plugin = "de.infolektuell.jpackage") - Applying plugins to all subprojects .