If you need to save a set of tests to be run manually, modify your pom as follows:
<project> ... <profiles> <profile> <id>manualTest</id> <build> <plugins> <plugin> <groupId>net.sf.baselinetest</groupId> <artifactId>baselinetest-maven-plugin</artifactId> <configuration> <testProfiles> <testProfile> <contexts>manualContext</contexts> <suites>manualSuite</suites> </testProfile> </testProfiles> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>
To run the test, run:
mvn test -P manualTest
See Introduction to Build Profiles for more information on build profiles.