Reports miscellaneous problems with the module-info.java file. For example, it reports a service which is provided but not exported or used.

δΎ‹:


module myModule {
  // Service is provided but its containing package is not exported
  provides com.example.MyService with com.example.MyServiceImpl;
}