Goals available for this plugin:
| Goal | Description |
|---|---|
| rmic:help | Display help information on rmic-maven-plugin. Call mvn rmic:help -Ddetail=true
-Dgoal=<goal-name> to display parameter details. |
| rmic:package | Creates a jar containing the rmic generated classes. |
| rmic:rmic | Compiles rmi stubs and skeleton classes from a remote implementation class. |
| rmic:test-rmic | Compiles rmi stubs and skeleton classes from a remote implementation class. By default runs against files in the test-classes directory. |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.2.1 |
| JDK | 1.7 |
| 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.codehaus.mojo</groupId>
<artifactId>rmic-maven-plugin</artifactId>
<version>1.3</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rmic-maven-plugin</artifactId>
<version>1.3</version>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"