outputFile Parameter Example

Use this parameter to specify the XML file that contains a representation of the classes to be documented.

<project>
  ...
  <reporting>
    <plugins>
      <plugin>
        <groupId>net.sf.jfxdplugin</groupId>
        <artifactId>maven-javafxdoc-plugin</artifactId>
        <version>1.0</version>
        <configuration>
          <outputFile>${project.reporting.outputDirectory}/javafxdoc.xml</outputFile>
        </configuration>
      </plugin>
    </plugins>
    ...
  </reporting>
  ...
</project>