You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
To pick up a draggable item, press the space bar.
While dragging, use the arrow keys to move the item.
Press space again to drop the item in its new position, or press escape to cancel.
Do you plan to have a way using Java 11/14 with module-path instead classpath ?
a way to give modules path and main module to JarBundler ANT Task
updating universalJavaApplicationStub to launch java with -p and -m options
I use a modified version of your universalJavaApplicationStub. It use two additionnal entries in java dictionnary of Info.plist : ModulePath and MainModule. These entries are manually added to Info.plist, because I have not worked on ANT task to produce this file automatically). They are used to launch java in "modular mode" if not class path is defined.
Activity
tofi86 commentedon Apr 29, 2020
Good catch. I haven't worked with the new Java module system yet, so this was indeed a bit out of scope.
You also pointed out, that this requires an updated JarBundler ANT task so I would need to synchronize development with the other project.
Not sure yet, when to find time for this at the moment...
pzw commentedon May 1, 2020
OK, thank you for your answer.
I use a modified version of your universalJavaApplicationStub. It use two additionnal entries in java dictionnary of Info.plist : ModulePath and MainModule. These entries are manually added to Info.plist, because I have not worked on ANT task to produce this file automatically). They are used to launch java in "modular mode" if not class path is defined.
Best regards