jira-importer commented on issue #993: URL: https://github.com/apache/maven-javadoc-plugin/issues/993#issuecomment-2957368491
**[Siveton Vincent](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=siveton)** commented Like I said, you need to add name and description parameters, similar to the following: ``` <reportSets> <reportSet> <id>jDoc1</id> <reports> <report>javadoc</report> </reports> <configuration> <name>jdoc1</name> <description>jdoc1</description> </configuration> </reportSet> <reportSet> <id>jdoc2</id> <configuration> <locale>en_US</locale> <destDir>apidocs2</destDir> <name>jdoc2</name> <description>jdoc2</description> </configuration> <reports> <report>javadoc</report> </reports> </reportSet> </reportSets> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
