This is my pom.xml
, I'm trying to disable Test Javadoc
report in site
:
[...]
<build>
[...]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<configuration>
<reportPlugins>
[...]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<reportSets>
<reportSet>
<id>html</id>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
<reportSet>
</configuration>
</plugin>
</reportPlugins>
</configuration>
</plugin>
</build>
Still Maven3 generates both Javadoc
and Test Javadoc
reports in the site. How to fix it?