Plugin Documentation

Goals available for this plugin:

GoalDescription
parasoft:compileCompiles application sources and send results to GRS server
parasoft:eclipseMojo to generate eclipse project files
parasoft:jtestJTest execution mojo
parasoft:jtest-globalJtest global execution mojo. Only works for multi-module maven projects. Can only be run in the command line.
parasoft:localsettingsMojo to generate the local settings file
parasoft:soatestSOAtest execution mojo
parasoft:verifyVerify mojo, used to fail the build if certain test result condition(s) are not met.
parasoft:verify-globalVerify mojo that runs as an aggregator

System Requirements

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

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

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