I read that to add .jar libraries as dependency in java9 modules, we just need to include them in --module-path and they will be converted to 'Atomatic Modules'
However when I try to use jLink, I still got the error: Error: module-info.class not found for dd.plist module
I realized that we can generate module-info.java with jdeps, my question is how I can recompile the .jar library with this module-info.java?