Understanding Java 9 Modules - Oracle
https://www.oracle.com/corporate/features/understanding-java-9-modules.html
module modulename { . The module declaration’s body can be empty or may contain various module directives, including requires, exports, provides…with, uses and opens (each of which we discuss). As you’ll see later, compiling the module declaration creates the module descriptor, which is stored in a file named module-info.class in the module’s root folder.
DA: 61 PA: 27 MOZ Rank: 14