You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Max Schaefer (JIRA)" <ji...@codehaus.org> on 2013/01/07 15:54:13 UTC

[jira] (MJAVADOC-335) In Maven 3 it is impossible to generate several JavaDoc reports at once

    [ https://jira.codehaus.org/browse/MJAVADOC-335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=316895#comment-316895 ] 

Max Schaefer commented on MJAVADOC-335:
---------------------------------------

I think that it is actually a bug in maven-reporting-exec component (http://jira.codehaus.org/browse/MSHARED-271). It keeps reportsets in a map using the report goal as a key.
                
> In Maven 3 it is impossible to generate several JavaDoc reports at once
> -----------------------------------------------------------------------
>
>                 Key: MJAVADOC-335
>                 URL: https://jira.codehaus.org/browse/MJAVADOC-335
>             Project: Maven 2.x Javadoc Plugin
>          Issue Type: Bug
>    Affects Versions: 2.8
>         Environment: Maven 3.0.3
>            Reporter: Anton Nikitin
>
> When I try to generate several JavaDoc reports using mvn site(see pom.xml fragment below), only last one is actually created.
> It works perfectly in Maven 2.2.1 and looks broken in Maven 3.0.3. I tried to change pom.xml to Maven 3 style (use Maven Site Plugin <reportPlugins> section instead of <reporting>) but it didn't help.
> Workaround: use Maven 2.2.1 for site generation.
> {code:xml}    <reporting>
>         <plugins>
>             <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-javadoc-plugin</artifactId>
>                 <version>2.8</version>
>                 <reportSets>
>                     <reportSet>
>                         <id>report-1</id>
>                         <configuration>
>                            <destDir>docs1</destDir>
>                             ...
>                         </configuration>
>                         <reports>
>                             <report>javadoc</report>
>                         </reports>
>                     </reportSet>
>                     <reportSet>
>                         <id>report-2</id>
>                         <configuration>
>                            <destDir>docs2</destDir>
>                            ...
>                         </configuration>
>                         <reports>
>                             <report>javadoc</report>
>                         </reports>
>                     </reportSet>                    
>                 </reportSets>
>             </plugin>
>         </plugins>
>     </reporting>
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://jira.codehaus.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira