I have just started using maven and have question.
My pom.xml contains tag “developer” with the full details of the team. What should I do to make this list visible on my project site? I know how to add a menu item to site.xml. But where this item should refer?
I found only one project in Jakarata that does it: the maven itself. They have tag developers in pom and link “The Maven Team” on site. This link refers to team-list.html. I have downloaded the full maven source and ran “mvn site” but this file was not generated on my environment and grepping the files did not help too.
Does anyone know how to do this?
I’m not sure it has always been the case but it appears the Project Team report (
team-list.html) should get generated by default duringmvn siteand be available under the Project Information. I just tested that on a sample project and it does work as expected.If it doesn’t, maybe try to configure the
maven-project-info-reports-pluginexplicitly to generate the report.Are you using a particular version of the maven site plugin? What version of Maven exactly?