Plugin Documentation

Goals available for this plugin:

Goal Report? Description
license:generate-report Yes This maven mojo generates a license report out of information generated by a former 'validate' goal run.
license:validate No This class is a Maven Mojo to check the validity of licenses specified in the dependencies of a maven module. Used to configure injection of Plexus components by MavenPluginManager.getConfiguredMojo(...) and special Maven objects as well: mojoExecution org.apache.maven.plugin.MojoExecution project org.apache.maven.project.MavenProject session org.apache.maven.execution.MavenSession settings org.apache.maven.settings.Settings plugin (Maven-3 only) org.apache.maven.plugin.descriptor.PluginDescriptor

System Requirements

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

Maven 3.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.puresoltechnologies.maven.plugins</groupId>
          <artifactId>license-maven-plugin</artifactId>
          <version>1.2.0</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.puresoltechnologies.maven.plugins</groupId>
        <artifactId>license-maven-plugin</artifactId>
        <version>1.2.0</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
  <!-- To use the report goals in your POM or parent POM -->
  <reporting>
    <plugins>
      <plugin>
        <groupId>com.puresoltechnologies.maven.plugins</groupId>
        <artifactId>license-maven-plugin</artifactId>
        <version>1.2.0</version>
      </plugin>
      ...
    </plugins>
  </reporting>
  ...
</project>

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