I have a modular JavaFX 11 app, that I need to be able to bundle for Linux and Windows. I'm currently using jlink to do so and it works well. I need the bundle to be standalone, as the Java version on the target computers is 1.8 .
Now I must add the SMBJ library to my app. I grabbed the good old jar, and need to modularize it (otherwise I can't use jlink, as seen here).
Do I need to also modularize the bazillion deps SMBJ has, or is there another way?