Java 9 introduced modules, which was a horrible fix for a non-existing problem. Searching google "How to install java modules" doesn't bring up anything useful.
Now, before I give in to the temptation and repackage the whole JDK and JavaFX into a single jar file, and add it to the classpath (assuming that still works), can anyone help me with undoing what these idiots did?
What I want is for any jar to run with "java -jar *.jar". Without --module-path, without --add-modules.
The first part seems easy, copying all jmods into JDK/jmods should work, but after that I need a way to tell the java runtime to always load all modules.
(And no, I don't want to learn how to "properly" use modules, I want a way to install them and forget about them.)