Replies: 1 comment 2 replies
-
The plugin just calls jpackage via a JDK supplied API (as opposed to, say, kicking it off via the command line). I haven't messed around with actually using that customization. From the jpackage docs looks like --verbose and --temp are helpful for debugging. It kind of looks like the process is to use --temp to generate the default file directory structure, then drop in override files, and then run jpackage again...? The plugin should be perfectly happy running jpackage command. Depending on your Maven expertise, you might want to try:
You could absolutely do all that via the plugin and a resources plugin execution. How is your Maven? ;) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to customize my Windows installer. Here it says, we can use
--resource-dir
to telljpackage
to override some of the Wix configuration. I tried passing that option into thewin-packages.txt
file asand creating a
main.wxs
file undersrc/packaging
. However, it still uses themain.wxs
created undertarget/installer-work/config
. Does this plugin directly or indirectly support this kind of customization?Thanks.
Beta Was this translation helpful? Give feedback.
All reactions