Plugin Documentation

Goals available for this plugin:

Goal Description
modelant.uml13:help Display help information on modelant.uml13.maven.javauml.
Call mvn modelant.uml13..javauml:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
modelant.uml13:java-to-uml13 Reverse engineer Java code to UML 1.3 as an aggregator of the project and its modules. The details shown in the model are the same ones published in javaDoc, namely: packages, classes, attributes, methods with their parameters. The plugin produces a model named ${artifactId}:${version}, stored in a file named explicitly through: ${modelFile} property. Some temporary files are generated in ${workDirectory}. They erased on normal completion, but in case of abnormal completion, they may be left existing.

System Requirements

The following specifies the minimum requirements to run this Maven plugin:

Maven 2.0
JDK 1.8
Memory No minimum requirement.
Disk Space No minimum requirement.

Usage

You should specify the version in your project's plugin configuration:

<project>
  ...
  <build>
    <!-- To define the plugin version in your parent POM -->
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>net.mdatools</groupId>
          <artifactId>modelant.uml13.maven.javauml</artifactId>
          <version>3.3.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>net.mdatools</groupId>
        <artifactId>modelant.uml13.maven.javauml</artifactId>
        <version>3.3.0</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"