Plugin Documentation

Goals available for this plugin:

GoalDescription
maven-one-plugin:convertConvert a Maven 1 project.xml (v3 pom) to a Maven 2 pom.xml (v4 pom).
maven-one-plugin:deploy-maven-one-repositoryDeploy the artifact in a Maven 1 remote repository.
maven-one-plugin:helpDisplay 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-repositoryInstall the artifact in the Maven 1 local repository.
maven-one-plugin:maven-one-pluginPackage a Maven 1 plugin.

System Requirements

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

Maven2.0
JDK1.5
MemoryNo minimum requirement.
Disk SpaceNo 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>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"