concept module declaration in category java

This is an excerpt from Manning's book The Java Module System.
Figure 2.4 Each module of the ServiceMonitor application is its own project with the well-known directory structure. New are the
mods
folder, which collects the modular JARs once they’re built, and the module declarationsmodule-info.java
file in each project’s root source directory.![]()
> monitor.observer/src/main/java/monitor-observer-info.java:1: > error: module declarations should be in a file named module-info.java > module monitor.observer { > ^ > 1 error
What I like best, though, are the module declarations themselves: they’re at all times a true representation of your project’s architecture and will provide considerable benefits to every developer and architect who works on those aspects of their system, thus improving its overall maintainability. (I go deeper into this topic in section 15.2.3.)