Ah, finally got past this bug to release by just backing out the one change in
my POM that I’d dismissed as irrelevant. I had entered this code in the
problematic module’s POM to work around a bug failing modular builds without an
intervening clean:
org.apache.maven.plugins
mav
It's amusing when you come upon an error, google the error message, and
find an email thread you participated in and forgot about.
Resurrecting this thread from last July and hoping for some insight.
I last released my project using maven-release-plugin on July 20, 2022 with
no issues. My projec
https://maven.apache.org/plugins/maven-assembly-plugin/usage.html
From: Vivek Suraiya
Date: Sunday, 16 October 2022 at 11:28
To: users@maven.apache.org
Subject: Windows Installer / MacOS dmg
I have a Netbeans 15 JavaFX (18.0.2 / JDK 18.0.2) project with several
dependencies from the Maven re
Ah nice! Jpackage looks neat as long as you don't need a customisable
installer.
I accidentally read 18 as 1.8 which is where some of our applications are
stuck at the moment...
On Sun, 16 Oct 2022, 12:17 Thomas Broyer, wrote:
> Doesn't JDK 18 come with jpackage for exactly that use case? Not
Doesn't JDK 18 come with jpackage for exactly that use case? Not sure
how/if you can drive it from Maven but you should be able to prepare
everything with dependency:copy-dependencies or the maven-assembly-plugin
and then run jpackage manually to produce the installers.
Le dim. 16 oct. 2022 à 10:2
In our own projects we do this kind of thing...
For Windows, you could use either the:
1. IzPack and the izpack-maven-plugin which produces a Jar that can be
executed on Windows. IzPack understand Windows/Linux/macOS and can
produce a GUI and/or CLI installer that works on all of those
platforms:
I have a Netbeans 15 JavaFX (18.0.2 / JDK 18.0.2) project with several
dependencies from the Maven repository. I wish to create a Windows installer
and a MacOS dmg including all dependencies and the JRE. Is this possible to do?