Hi!

I've configured the following individual reports:  

<reporting>
  <excludeDefaults>true</excludeDefaults>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-project-info-reports-plugin</artifactId>
      <reportSets>
        <reportSet>
            <reports>
              <report>index</report>
              <report>summary</report>
          </reports>
        </reportSet>
      </reportSets>
    </plugin>
  </plugins>
</reporting>


If I run mvn help:effective-pom I get the following output

<reporting>
  <excludeDefaults>true</excludeDefaults>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-project-info-reports-plugin</artifactId>
      <reportSets>
        <reportSet>
            <reports>
              <report>index</report>
              <report>summary</report>
          </reports>
        </reportSet>
      </reportSets>
    </plugin>

    <!-- a lot of other plugins -->
    ...

    <plugin>
      <artifactId>maven-project-info-reports-plugin</artifactId>
    </plugin>
  </plugins>
</reporting>

Why is maven automatically adding the maven-project-info-reports-plugin
once again although I have already defined it with a customized
reportset?
Ist this a feature or a bug ;-)

Regards
Mario



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to