Goals available for this plugin:
| Goal | Description |
|---|---|
| xmlbeans:help | Display help information on xmlbeans-maven-plugin. Call mvn xmlbeans:help -Ddetail=true -Dgoal=<goal-name>to display parameter details. |
| xmlbeans:xmlbeans | A Maven 2 plugin which parses xsd files and produces a corresponding object model based on the Apache XML Beans parser. The plugin produces two sets of output files referred to as
generated sources and generated classes. The former is then
compiled to the build Note that the descriptions for the goal's parameters have been blatently copied from http://xmlbeans.apache.org/docs/2.0.0/guide/antXmlbean.html for convenience. |
| xmlbeans:xmlbeans-test | A Maven 2 plugin which parses xsd files and produces a corresponding object model based on the Apache XML Beans parser. The plugin produces two sets of output files referred to as
generated sources and generated classes. The former is then
compiled to the build Note that the descriptions for the goal's parameters have been blatently copied from http://xmlbeans.apache.org/docs/2.0.0/guide/antXmlbean.html for convenience. |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.0.6 |
| JDK | 1.4 |
| 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>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"