I'm trying to add module documentation to maven modules of my project (like I would do in the module-info.java file of my modules). Is there a way to the doc in my module's POM file or to add the module-info file without needing to re-add all the exports?
In short, I need to see the "All Modules" view of the generated doc when I run the mvn javadoc:aggregate
command in my parent project, containing the doc for all of its submodules.