Plugin Documentation

Goals available for this plugin:

GoalDescription
fusion:formatpomsRecursively examine the file system for Maven poms starting at basedir. Any pom.xml files located have formatting applied to them.
fusion:fuseNo description.
fusion:splitNo description.
fusion:tagOriginally create as part of the externals-maven-plugin which allowed linking svn:externals with a multi-module Maven build in an intelligent manner. In Subversion this would create a unique namespaced path for each module (svn external) In Git the tagging functionality is now part of the SplitMojo. This mojo is used only to setup the build tag pom versions within a fused project.
fusion:validatepomsMake sure the aggregate checkout is "self-contained". Make sure the parent versions of the svn:externals modules point back to the correct root pom. Make sure the properties used to figure out which version of the child modules to use, actually match up with the versions declared in the child modules.

System Requirements

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

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

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