Plugin Documentation

Goals available for this plugin:

Goal Description
coremedia-blueprint:disable-extensions This MOJO disables given extensions. Disabling means:
  • removing the extension descriptor BOM from the dependencyManagement section of the project's root POM.
  • removing extension from build by delete < module> include
The extensions to disable are defined by the parameter extensionToDisable.
coremedia-blueprint:help Display help information on coremedia-blueprint-maven-plugin.
Call mvn coremedia-blueprint:help -Ddetail=true -Dgoal=<goal-name> to display parameter details.
coremedia-blueprint:remove-extensions Removes given extensions from hard drive.
coremedia-blueprint:update-extensions This MOJO updates the extension config POMs by analyzing which extensions are enabled and which are disabled. It only adds and removes dependencies to the component's extension config POMs and does not modify other resources.

System Requirements

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

Maven 3.1.0
JDK 1.7
Memory No minimum requirement.
Disk Space No 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>com.coremedia.maven</groupId>
          <artifactId>coremedia-blueprint-maven-plugin</artifactId>
          <version>1.1.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.coremedia.maven</groupId>
        <artifactId>coremedia-blueprint-maven-plugin</artifactId>
        <version>1.1.0</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

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