------
Fit Maven Plugin Usage
------
------
------
Configuring Fit tests
* Minimal configuration
You can use the following configuration in your pom.xml to run the Fit Maven
Plugin everytime the project is built. By default, the plugin is configured
to be executed during the integration-test phase.
+---+
[...]
[...]
org.codehaus.mojo
fit-maven-plugin
src/main/fit
**/*Fixture.html
target/fit
run
[...]
[...]
+---+
* Full configuration
The following configuration in your pom.xml allow to fully customise the Fit Maven
Plugin everytime the project is built.
+---+
[...]
[...]
org.codehaus.mojo
fit-maven-plugin
wiki-fixture
integration-test
src/main/fit
true
**/WikiFixture.html
wiki
table
tr
td
target/fit
true
run
[...]
[...]
+---+