I have a Java desktop application that is a valid module with its module-info.java file. I'm also using javapackager command to create a custom JRE runtime image and then use Inno Setup to create a Windows installer for my application. Since my application is installed in the custom JRE image as a module, is it possible to update it? I dont want to update my application using javapackager, just update my application's module into the existing custom JRE image.
I noticed that using javac command and module-patch parameter it could be possible but I'm not really sure how to use it. Anyone knows what command and parameters I can use to do this? Thanks in advance.