Plugin documentation

Goals available for this plugin:

Goal Description
buildmagic-thirdparty:comp-info-verify Maven plugin for verifying a component-info.xml file. By default it will search the current directory for a file called component-info.xml. Note: this goal in still in development.
buildmagic-thirdparty:maven-deploy Mojo for taking a thirdparty deployment (component-info.xml, lib/*.jar, etc..) and deploying it to a maven repository. This mojo functions in a similar way to the deploy-file goal of the maven-deploy-plugin.
buildmagic-thirdparty:build-thirdparty Maven goal for generating a thirdparty directory structure using artifact downloaded from a maven repository.
buildmagic-thirdparty:thirdparty-deploy Maven plugin for deploying maven generated jars to the buildmagic repository. By default it will bind to the deploy phase.

System Requirements

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.

Usage

You could run 'mvn -up' to get the latest version of this plugin, or 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.jboss.maven.plugins<groupId>
          <artifactId>maven-buildmagic-thirdparty-plugin<artifactId>
          <version>2.2.0<version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>org.jboss.maven.plugins<groupId>
        <artifactId>maven-buildmagic-thirdparty-plugin<artifactId>
        <version>2.2.0<version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>
For more information, see "Guide to Configuring Plug-ins"