Usage

Plugin introduction, description, and other relevant information.

Goals Overview

Usage

The simplest usage is just to put the Plugin into the reporting area and use it default values.

<project>
  ...
  <reporting>
    <plugin>
      <groupId>com.soebes.maven.plugins.dmg</groupId>
      <artifactId>doxygen-maven-plugin</artifactId>
      <version>1.0.1</version>
    </plugin>
  </reporting>
  ...
<project>
<project>
  ...
  <reporting>
    <plugin>
      <groupId>com.soebes.maven.plugins.dmg</groupId>
      <artifactId>doxygen-maven-plugin</artifactId>
      <version>1.0.1</version>
      <configuration>
        <haveDot>false</haveDot>
        <quiet>false</quiet>
        <projectName>This is a Test Project (basicReportTest)</projectName>
      </configuration>
    </plugin>
  </reporting>
  ...
<project>