-
Notifications
You must be signed in to change notification settings - Fork 6
[MSHARED-271] Multiple reportSets don't work #37
Copy link
Copy link
Closed
Labels
bugSomething isn't workingSomething isn't workingpriority:criticalCrashes, loss of data, severe memory leakCrashes, loss of data, severe memory leak
Milestone
Description
Max Schaefer opened MSHARED-271 and commented
Having several report sets only the last one is created.
Example: Create java doc report twice, with different parameters. First time with deprecated api list, second time without.
Expected behaviour: The two directories are created with the different javadocs.
However, currently onle one directory is created.
...
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9</version>
<reportSets>
<reportSet>
<id>without-deprecations</id>
<configuration>
<reportOutputDirectory>${project.reporting.outputDirectory}/myoutput</reportOutputDirectory>
<destDir>myapidocs-without-deprecations</destDir>
<nodeprecatedlist>true</nodeprecatedlist>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
<reportSet>
<id>with-deprecations</id>
<configuration>
<reportOutputDirectory>${project.reporting.outputDirectory}/myoutput</reportOutputDirectory>
<destDir>myapidocs-with-deprecations</destDir>
<nodeprecatedlist>false</nodeprecatedlist>
</configuration>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>
</plugins>
</reporting>Affects: maven-reporting-exec-1.0.2
Attachments:
- test.zip (1.38 kB)
Issue Links:
- MJAVADOC-335 In Maven 3 it is impossible to generate several JavaDoc reports at once
("is duplicated by") - SUREFIRE-905 Surefire report plugin only executed tests once. Junit Categorization is not possible
("is duplicated by")
5 votes, 4 watchers
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpriority:criticalCrashes, loss of data, severe memory leakCrashes, loss of data, severe memory leak