Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable generation of Test Javadoc report in Maven 3 site plugin?

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?

like image 856
yegor256 Avatar asked Nov 06 '22 04:11

yegor256


1 Answers

This works correctly for me as documented in Selective Javadocs reports. Can you re-check the versions of the plugins that you are using? With the snippet below and running mvn site using Maven 3.0.1, only Javadoc gets generated. Adding the line <report>test-javadoc</report> below the existing <report> tag results in both Javadoc and Test Javadoc getting generated.

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-site-plugin</artifactId>
            <version>3.0-beta-3</version>
            <configuration>
                <reportPlugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-javadoc-plugin</artifactId>
                        <version>2.7</version>
                        <reportSets>
                            <reportSet>
                                <id>html</id>
                                <reports>
                                    <report>javadoc</report>
                                </reports>
                            </reportSet>
                        </reportSets>
                    </plugin>
                  </reportPlugins>
              </configuration>
          </plugin>
like image 69
Raghuram Avatar answered Nov 09 '22 09:11

Raghuram