Goals available for this plugin:
Goal | Description |
---|---|
maven-one-plugin:convert | Convert a Maven 1 project.xml (v3 pom) to a Maven 2 pom.xml (v4 pom). |
maven-one-plugin:deploy-maven-one-repository | Deploy the artifact in a Maven 1 remote repository. |
maven-one-plugin:help | Display help information on maven-one-plugin. Call mvn one:help -Ddetail=true
-Dgoal=<goal-name> to display parameter details. |
maven-one-plugin:install-maven-one-repository | Install the artifact in the Maven 1 local repository. |
maven-one-plugin:maven-one-plugin | Package a Maven 1 plugin. |
The following specifies the minimum requirements to run this Maven plugin:
Maven | 2.0 |
JDK | 1.5 |
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.apache.maven.plugins</groupId> <artifactId>maven-one-plugin</artifactId> <version>1.3</version> </plugin> ... </plugins> </pluginManagement> <!-- To use the plugin goals in your POM or parent POM --> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-one-plugin</artifactId> <version>1.3</version> </plugin> ... </plugins> </build> ... </project>
For more information, see "Guide to Configuring Plug-ins"