Plugin Documentation

Goals available for this plugin:

GoalDescription
wagon:copyCopy artifacts from one Wagon repository to another Wagon repository.
wagon:downloadTransfers a set of files from a remote URL to a specified local directory.
wagon:download-singleDownload a single file.
wagon:existCheck for the existing of remote resource.
wagon:listLists the content of the specified directory (remotePath) under a specified repository (url)
wagon:merge-maven-reposMerge artifacts from one Maven repository to another Maven repository.
wagon:uploadUpload multiple sets of files.
wagon:upload-singleUpload a single file with option to change name

System Requirements

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

Maven2.0.6
JDK1.6
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.kuali.maven.plugins</groupId>
          <artifactId>wagon-maven-plugin</artifactId>
          <version>1.0.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.kuali.maven.plugins</groupId>
        <artifactId>wagon-maven-plugin</artifactId>
        <version>1.0.0</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

For more information, see "Guide to Configuring Plug-ins"