Goals available for this plugin:
| Goal | Description |
|---|---|
| vfs:copy | Copy files from one VFS to another VFS |
| vfs:help | Display help information on vfs-maven-plugin. Call mvn vfs:help -Ddetail=true
-Dgoal=<goal-name> to display parameter details. |
| vfs:list | Display file list of a virtual file system. |
| vfs:merge-maven-repositories | Merge Maven repository from one VFS to another VFS |
| vfs:move | Move files from a virtual file system to another |
| vfs:remove | Remove files from a virtual file system |
The following specifies the minimum requirements to run this Maven plugin:
| Maven | 2.2.1 |
| 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.codehaus.mojo</groupId>
<artifactId>vfs-maven-plugin</artifactId>
<version>1.0.2-SNAPSHOT</version>
</plugin>
...
</plugins>
</pluginManagement>
<!-- To use the plugin goals in your POM or parent POM -->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>vfs-maven-plugin</artifactId>
<version>1.0.2-SNAPSHOT</version>
</plugin>
...
</plugins>
</build>
...
</project>
For more information, see "Guide to Configuring Plug-ins"