I'm building a program for university. Because it uses JavaFX I'm managing dependencies via Maven. I'm on a Windows machine and generate a runtime image using the goal clean javafx:jlink. This generates a folder with some .dll files, java.exe and javaw.exe and the launcher.bat. There is also a launcher script for shells. When I run the executable on my MacBook it doesn't run because, naturally, it doesn't find the needed java Runtime that should be included in the bin folder like the java.exe for Windows.
So my question is: can I make Maven include a MacOS and possibly even a Linux Java Runtime while building on my Windows machine? So that in the resulting bin folder there are the JavaFX versions for Windows, MacOS and Linux and a java executable for Windows, MacOS and Linux?