Type a minimal module-info.java declaration
Type a minimal module-info.java declaration
Answer
module com.acme.app { requires java.sql; }
module-info.java lives at the source root. The module name by convention mirrors a top-level package. requires java.sql makes the JDBC API available to this module.