I have a multi module pom
ProjectBaseDir>
- Module A
- Module B
- parentPom.xml
I don't have any site.xml
ProjectBaseDir> mvn clean site
produces the below files under the directory
ProjectBaseDir/target/site>
- cpd.html, pmd.html, findbugs.html
- project-reports.html (Note: no index.html)
- folders (css, images, apidocs)
Links generated in multi module pom points to "index.html" but that file is not created. staging fixes the relative path of the module files but the original issue of index.html still exists
ProjectBaseDir> mvn site:stage
- How can I fix the link to point to "project-reports.html" ?
- Or how can I instruct mvn site to create index.html instead of project-reports.html ?
Note: I tried "maven-project-info-reports-plugin" with reportsets of index but it did not change anything.