Version 3.11.0 / February 23, 2024
This is a Maven plugin for executing Wetator tests.
You can find the Wetator homepage at http://www.wetator.org.
❤️ Sponsor
To use the plugin you have to add to the <build><plugins>
section of your pom.xml
. See the sample code below to have the wetator tests run during the integration-test
phase.
<plugin>
<groupId>org.wetator.maven</groupId>
<artifactId>wetator-maven-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<configFile>src/test/resources/wetator.config</configFile>
<testFileDir>src/test/resources/wetator</testFileDir>
<includes>
<include>**/*.wet</include>
<include>**/*.wett</include>
</includes>
<excludes>
<exclude>**/modules/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>execute</goal>
</goals>
</execution>
</executions>
</plugin>
By default the plugin includes all *.wet, *.wett, *.xls, *.xlsx files within the 'testFileDir' folder.
To run the tests manually use:
mvn org.wetator.maven:wetator-maven-plugin:execute
The wetator-maven-plugin is using the Wetator dependency:
<dependency>
<groupId>org.wetator</groupId>
<artifactId>wetator</artifactId>
<version>3.5.0</version>
</dependency>
- use Wetator 3.11.0
- use Wetator 3.5.0
- use Wetator 2.4.0
- use Wetator 2.3.0
- use Wetator 2.2.0
- use Wetator 2.1.0
- moved to github
- use Wetator 1.17.0
- use Wetator 1.10.0