Goals available for this plugin:
| Goal | Report? | Description | 
|---|---|---|
| jdtaus-container-mojo:clean-sources | No | Mojo to cleanup source files (e.g. remove trailing spaces). | 
| jdtaus-container-mojo:help | No | Display help information on jdtaus-container-mojo. Call mvn jdtaus-container-mojo:help -Ddetail=true -Dgoal=<goal-name>to display parameter details. | 
| jdtaus-container-mojo:java-commit | No | Mojo to commit container meta-data to compiled java classes. | 
| jdtaus-container-mojo:java-commit-tests | No | Mojo to commit container meta-data to compiled java test classes. | 
| jdtaus-container-mojo:java-container | No | Mojo to generate java code. | 
| jdtaus-container-mojo:java-container-tests | No | Mojo to generate test java code. | 
| jdtaus-container-mojo:report | Yes | Generates a report for the artifact's container metadata. | 
| jdtaus-container-mojo:spring-descriptor | No | Mojo to generate a spring beans descriptor with corresponding support classes from a project. | 
| jdtaus-container-mojo:verify-jar | No | Mojo to validate a set of modules from a single jar file. | 
| jdtaus-container-mojo:verify-model | No | Mojo to validate set of modules. | 
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.0 | 
| JDK | Default target for maven-compiler-plugin version 2.5.1 | 
| Memory | No minimum requirement. | 
| Disk Space | No minimum requirement. | 
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>org.jdtaus.mojo</groupId>
          <artifactId>jdtaus-container-mojo</artifactId>
          <version>3.13</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.jdtaus.mojo</groupId>
        <artifactId>jdtaus-container-mojo</artifactId>
        <version>3.13</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
  <!-- To use the report goals in your POM or parent POM -->
  <reporting>
    <plugins>
      <plugin>
        <groupId>org.jdtaus.mojo</groupId>
        <artifactId>jdtaus-container-mojo</artifactId>
        <version>3.13</version>
      </plugin>
      ...
    </plugins>
  </reporting>
  ...
</project>
For more information, see "Guide to Configuring Plug-ins"