Plugin Documentation

Goals available for this plugin:

GoalDescription
citrus:create-excel-docCreates test documentation in MS Excel listing all available tests with meta information (name, author, description, date, ...) .
citrus:create-html-docCreates test overview documentation in HTML. The web page contains a list of all available tests with meta information.
citrus:create-suite-from-wsdlCreates new Citrus test suite from a given WSDL with XML test file and executable Java class. Mojo offers an interactive mode, where the plugin prompts for parameters during execution. In non-interactive mode the parameters are given as command line arguments.
citrus:create-testCreates new Citrus test cases with empty XML test file and executable Java class. Mojo offers an interactive mode, where the plugin prompts for parameters during execution. In non-interactive mode the parameters are given as command line arguments.
citrus:create-test-from-xsdCreates new Citrus test cases with empty XML test file and executable Java class. Mojo offers an interactive mode, where the plugin prompts for parameters during execution. In non-interactive mode the parameters are given as command line arguments.
citrus:helpDisplay help information on citrus-maven-plugin.
Call
  mvn citrus:help -Ddetail=true -Dgoal=<goal-name>
to display parameter details.

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>com.consol.citrus.mvn</groupId>
          <artifactId>citrus-maven-plugin</artifactId>
          <version>1.2.M2</version>
        </plugin>
        ...
      </plugins>
    </pluginManagement>
    <!-- To use the plugin goals in your POM or parent POM -->
    <plugins>
      <plugin>
        <groupId>com.consol.citrus.mvn</groupId>
        <artifactId>citrus-maven-plugin</artifactId>
        <version>1.2.M2</version>
      </plugin>
      ...
    </plugins>
  </build>
  ...
</project>

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