Plugin Documentation
Goals available for this plugin:
| Goal | Description |
|---|---|
| citrus:create-excel-doc | Creates test documentation in MS Excel listing all available tests with meta information (name, author, description, date, ...) . |
| citrus:create-html-doc | Creates test overview documentation in HTML. The web page contains a list of all available tests with meta information. |
| citrus:create-suite-from-wsdl | Creates 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-test | Creates 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-xsd | Creates 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:help | Display 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:
| Maven | 2.0 |
| JDK | 1.5 |
| 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.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"